9 lines
105 B
C++
9 lines
105 B
C++
#ifndef DATA_H
|
|
#define DATA_H
|
|
template <typename T>
|
|
struct Data
|
|
{
|
|
public:
|
|
T x, y, z, th;
|
|
};
|
|
#endif
|