#ifndef _GYR_TIMESTAMP #define _GYR_TIMESTAMP #include "protocol.h" #include class TimeStamp : public std::vector { private: short _index; Protocol::Type _type; public: TimeStamp(Protocol::Type t, short idx); TimeStamp::TimeStamp(Protocol::Type type, char * raw, short raw_size); char * getRaw(); unsigned short getRawSize(); Protocol::Type getType(); short getIndex(); bool operator==(TimeStamp &stamp); }; #endif