lora sensnode

Dependencies:   libmDot mbed-rtos mbed

Fork of mDot_LoRa_Sensornode by Adrian Mitevski

app/CommandMessage.h

Committer:
socie123
Date:
2016-08-10
Revision:
1:e67174cc4953
Parent:
0:f2815503561f

File content as of revision 1:e67174cc4953:

/*
 * CommandMessage.h
 *
 *  Created on: 08.06.2016
 *      Author: Adrian
 */
#include <string>
#ifndef APP_COMMANDMESSAGE_H_
#define APP_COMMANDMESSAGE_H_

class CommandMessage {
public:
	CommandMessage();
	virtual ~CommandMessage();

	std::string getCommandString();
private:
	std::string command;

	void setCommandString(std::string);
};

#endif /* APP_COMMANDMESSAGE_H_ */