Cleaning up drivers/Cpp, Cpp/Lifxtest, virtuals, and iotrmi/C++ (revisiting the C...
[iot2.git] / benchmarks / drivers / Cpp / LabRoom / LabRoom.hpp
1 #ifndef _LABROOM_HPP__
2 #define _LABROOM_HPP__
3 #include <iostream>
4
5 #include "Room.hpp"
6
7 using namespace std;
8
9 class LabRoom : public Room 
10 {
11
12         public:
13                 LabRoom();
14                 ~LabRoom();
15
16                 int getRoomID();
17 };
18 #endif