Francis CHATAIN / Mbed 2 deprecated MSNV2-Terminal_V1-6

Dependencies:   DmTftLibrary eeprom SX1280Lib filesystem mbed

Fork of MSNV2-Terminal_V1-5 by Francis CHATAIN

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DataMessagePart.hpp Source File

DataMessagePart.hpp

00001 #ifndef __DATAMESSAGEPART_HPP__
00002 #define __DATAMESSAGEPART_HPP__
00003 
00004 #include "Context.h"
00005 
00006 
00007 #include <vector>
00008 #include <sstream>
00009 
00010 #include "Service.hpp"
00011 
00012 
00013 namespace misnet {
00014     class DataMessagePart;
00015 }
00016 
00017 
00018 class misnet::DataMessagePart {
00019     public:
00020         virtual string serialize() = 0;         // Returns a string that represents the data to be sent to gateway
00021 };
00022 
00023 #endif  // __DATAMESSAGEPART_HPP__