Francis CHATAIN / Mbed 2 deprecated MSNV2-Terminal_V1-6

Dependencies:   DmTftLibrary eeprom SX1280Lib filesystem mbed

Fork of MSNV2-Terminal_V1-5 by Francis CHATAIN

messages/DataMessagePart.hpp

Committer:
patrick_duc
Date:
2018-10-19
Branch:
Integration
Revision:
39:13e66d087ae9
Parent:
37:b565750d9978

File content as of revision 39:13e66d087ae9:

#ifndef __DATAMESSAGEPART_HPP__
#define __DATAMESSAGEPART_HPP__

#include <string>

#include "Context.h"


namespace misnet {
    class DataMessagePart;
}

class misnet::DataMessagePart {
public:
    DataMessagePart() {
    }

    virtual ~DataMessagePart() {
    }

  virtual void serialize(std::string & result) = 0; // Updates the argument string to represents the data to be sent to gateway
};

#endif  // __DATAMESSAGEPART_HPP__