This program is porting rosserial_arduino for mbed http://www.ros.org/wiki/rosserial_arduino This program supported the revision of 169 of rosserial.

Dependencies:  

Dependents:   rosserial_mbed robot_S2

ros/msg.h

Committer:
nucho
Date:
2011-08-19
Revision:
0:77afd7560544
Child:
1:ff0ec969dad1

File content as of revision 0:77afd7560544:

/*
 * Msg.h
 *
 *  Created on: Aug 5, 2011
 *      Author: astambler
 */

#ifndef ROS_MSG_H_
#define ROS_MSG_H_

namespace ros {
/* Base Message Type */
class Msg {
public:
    virtual int serialize(unsigned char *outbuffer) = 0;
    virtual int deserialize(unsigned char *data) = 0;
    virtual const char * getType() = 0;

};
}

#endif /* MSG_H_ */