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.cpp Source File

CommandMessage.cpp

00001 /*
00002  * CommandMessage.cpp
00003  *
00004  *  Created on: 08.06.2016
00005  *      Author: Adrian
00006  */
00007 
00008 #include "CommandMessage.h"
00009 
00010 CommandMessage::CommandMessage() {
00011     // TODO Auto-generated constructor stub
00012 
00013 }
00014 
00015 CommandMessage::~CommandMessage() {
00016     // TODO Auto-generated destructor stub
00017 }
00018 
00019 std::string CommandMessage::getCommandString(){
00020     return command;
00021 }
00022 
00023 void CommandMessage::setCommandString(std::string commandString){
00024     this->command = commandString;
00025 }
00026