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

Dependencies:   MQTT

Revision:
2:199ddea804cd
Parent:
0:f86732d81998
Child:
3:3d91bf839b49
--- a/Command.cpp	Fri Nov 06 07:09:14 2015 +0000
+++ b/Command.cpp	Fri Nov 06 14:56:34 2015 +0000
@@ -1,22 +1,39 @@
-#include "Command.h"
+/*******************************************************************************
+ * Copyright (c) 2015 IBM Corp.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ *
+ * The Eclipse Public License is available at
+ *    http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ *   http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * Contributors:
+ *    Sathisumar Palaniappan - initial implementation
+ *******************************************************************************/ 
+ #include "Command.h"
 
 using namespace IoTF;
 
-Command::Command(char* command, char* format, char *payload) {
-    this->command = command;
-    this->format = format;
-    this->payload = payload;
+Command::Command(char* cmd, char* fmt, char *pload):command(cmd),format(fmt),payload(pload)
+{
+
 }
 
-char* Command::getPayload() {
+char* Command::getPayload() 
+{
     return payload;
 }
 
-char* Command::getCommand() {
+char* Command::getCommand() 
+{
     return command;
 }
     
-char* Command::getFormat() {
+char* Command::getFormat() 
+{
     return format;
 }
     
\ No newline at end of file