lora sensnode

Dependencies:   libmDot mbed-rtos mbed

Fork of mDot_LoRa_Sensornode by Adrian Mitevski

app/CommandMessage.h

Committer:
mitea1
Date:
2016-07-06
Revision:
0:f2815503561f

File content as of revision 0:f2815503561f:

/*
 * 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_ */