Preparing Lifxtest as a test benchmark; making adjustments in IoTSet for C++, etc.
[iot2.git] / benchmarks / Cpp / Lifxtest / Lifxtest.hpp
1 #ifndef _LIFXTEST_HPP__
2 #define _LIFXTEST_HPP__
3 #include <iostream>
4
5 #include "IoTSet.hpp"
6 #include "LightBulbTest.hpp"
7
8 class Lifxtest {
9
10         private:
11                 // IoTSet
12                 IoTSet<LightBulbTest*> lifx_light_bulb;
13
14         public:
15
16                 Lifxtest();
17                 Lifxtest(IoTSet<LightBulbTest*> _lifx_light_bulb);
18                 ~Lifxtest();
19                 void init();
20 };
21 #endif
22