Version FC

Dependencies:   DmTftLibrary eeprom SX1280Lib filesystem mbed

Fork of MSNV2-Terminal_V1-5 by Francis CHATAIN

Revision:
24:92c30dabfda4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DataMessagePart.hpp	Tue Sep 11 21:45:52 2018 +0000
@@ -0,0 +1,23 @@
+#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__