hand_control/src/data.h

10 lines
105 B
C
Raw Normal View History

#ifndef DATA_H
#define DATA_H
template <typename T>
struct Data
{
public:
T x, y, z, th;
};
#endif