Version FC

Dependencies:   DmTftLibrary eeprom SX1280Lib filesystem mbed

Fork of MSNV2-Terminal_V1-5 by Francis CHATAIN

DataMessagePart.hpp

Committer:
FCH_31
Date:
2018-10-22
Revision:
41:5a436163dddf
Parent:
24:92c30dabfda4

File content as of revision 41:5a436163dddf:

#ifndef __DATAMESSAGEPART_HPP__
#define __DATAMESSAGEPART_HPP__

#include "Context.h"


#include <vector>
#include <sstream>

#include "Service.hpp"


namespace misnet {
    class DataMessagePart;
}


class misnet::DataMessagePart {
    public:
        virtual string serialize() = 0;         // Returns a string that represents the data to be sent to gateway
};

#endif  // __DATAMESSAGEPART_HPP__