Preparing Lifxtest as a test benchmark; making adjustments in IoTSet for C++, etc.
[iot2.git] / benchmarks / Cpp / Lifxtest / Lifxtest.hpp
diff --git a/benchmarks/Cpp/Lifxtest/Lifxtest.hpp b/benchmarks/Cpp/Lifxtest/Lifxtest.hpp
new file mode 100644 (file)
index 0000000..41b61aa
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef _LIFXTEST_HPP__
+#define _LIFXTEST_HPP__
+#include <iostream>
+
+#include "IoTSet.hpp"
+#include "LightBulbTest.hpp"
+
+class Lifxtest {
+
+       private:
+               // IoTSet
+               IoTSet<LightBulbTest*> lifx_light_bulb;
+
+       public:
+
+               Lifxtest();
+               Lifxtest(IoTSet<LightBulbTest*> _lifx_light_bulb);
+               ~Lifxtest();
+               void init();
+};
+#endif
+