Updating stub and skeleton for Lifxtest
[iot2.git] / benchmarks / virtuals / Room.hpp
1 #ifndef _ROOM_HPP__
2 #define _ROOM_HPP__
3 #include <iostream>
4
5 using namespace std;
6
7 class Room
8 {
9         public:
10         virtual int getRoomID() = 0;
11 };
12 #endif