Had to fork with a different name, because of some incompatibility issues.

Dependencies:   MQTT

Revision:
0:f86732d81998
Child:
2:199ddea804cd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Command.h	Fri Nov 06 07:09:14 2015 +0000
@@ -0,0 +1,23 @@
+#include "stdio.h"
+
+#ifndef Command_H
+#define Command_H
+
+namespace IoTF {
+
+    class Command
+    {
+        private:
+            char *command;
+            char *format;
+            char *payload;
+           
+        public:
+        
+            Command(char* command, char* format, char *payload);            
+            char* getPayload();
+            char* getCommand();
+            char* getFormat();
+     };
+}
+#endif
\ No newline at end of file