Fixed compiler for Java code generation (not heavily tested yet, but fixes include...
[iot2.git] / benchmarks / virtuals / RoomSmart.hpp
1 #ifndef _ROOMSMART_HPP__
2 #define _ROOMSMART_HPP__
3 #include <iostream>
4 #include <vector>
5 #include <set>
6 #include "IoTRMICall.hpp"
7 #include "IoTRMIObject.hpp"
8
9 using namespace std;
10
11 class RoomSmart
12 {
13         public:
14         virtual int getRoomID() = 0;
15 };
16 #endif