SRK Version of mDot LoRa_Sensormode_SRK

Dependencies:   libmDot mbed-rtos mbed

Fork of mDot_LoRa_Sensornode by Adrian Mitevski

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CommandMessage.h Source File

CommandMessage.h

00001 /*
00002  * CommandMessage.h
00003  *
00004  *  Created on: 08.06.2016
00005  *      Author: Adrian
00006  */
00007 #include <string>
00008 #ifndef APP_COMMANDMESSAGE_H_
00009 #define APP_COMMANDMESSAGE_H_
00010 
00011 class CommandMessage {
00012 public:
00013     CommandMessage();
00014     virtual ~CommandMessage();
00015 
00016     std::string getCommandString();
00017 private:
00018     std::string command;
00019 
00020     void setCommandString(std::string);
00021 };
00022 
00023 #endif /* APP_COMMANDMESSAGE_H_ */