Adding callback for C++ (still has bug for return values); adding struct as method...
[iot2.git] / iotjava / iotrmi / C++ / sample / CallBackInterface.hpp
1 #ifndef _CALLBACKINTERFACE_HPP__
2 #define _CALLBACKINTERFACE_HPP__
3
4 #include <iostream>
5
6 using namespace std;
7
8 class CallBackInterface {
9         public:
10                 virtual int             printInt() = 0;
11                 virtual void    setInt(int _i) = 0;
12 };
13
14 #endif
15