Adding callback for C++ (still has bug for return values); adding struct as method...
[iot2.git] / iotjava / iotrmi / C++ / sample / StructC.hpp
1 #ifndef _STRUCTC_HPP__
2 #define _STRUCTC_HPP__
3
4 using namespace std;
5
6 struct data {
7         string  name;
8         float   value;
9         int             year;
10 };
11
12 #endif
13