Changing a few things to pointer; Testing Lifxtest benchmark without using runtime...
[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 "LightBulb.hpp"
7 #include "LightBulbTest.hpp"
8
9 class Lifxtest {
10
11         private:
12                 // IoTSet
13                 //IoTSet<LightBulbTest*> lifx_light_bulb;
14                 IoTSet<LightBulb*> lifx_light_bulb;
15
16         public:
17
18                 Lifxtest();
19                 //Lifxtest(IoTSet<LightBulbTest*> _lifx_light_bulb);
20                 Lifxtest(void** args);
21                 ~Lifxtest();
22                 void init();
23 };
24 #endif
25