Adding class LabRoom for IoTRelation testing with C++ IoTSlave
[iot2.git] / benchmarks / drivers / Cpp / LabRoom / LabRoom.hpp
1 #ifndef _LABROOM_HPP__
2 #define _LABROOM_HPP__
3 #include <iostream>
4 #include <fstream>
5
6 #include "Room.hpp"
7
8 using namespace std;
9
10 class LabRoom : public Room 
11 {
12
13         public:
14                 LabRoom();
15                 ~LabRoom();
16
17                 int getRoomID();
18 };
19 #endif