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

Dependencies:   MQTT

Command.h

Committer:
sathipal
Date:
2015-11-06
Revision:
2:199ddea804cd
Parent:
0:f86732d81998
Child:
3:3d91bf839b49

File content as of revision 2:199ddea804cd:

/*******************************************************************************
 * 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 "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