Adding config file for sharing.
[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 "IoTRMIObject.hpp"
7
8 using namespace std;
9
10 class RoomSmart
11 {
12         public:
13         virtual int getRoomID() = 0;
14 };
15 #endif