/* * LampFactory.h * * Created on: December 28, 2019 * Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert */ #ifndef FLIPPR_DRIVER_LAMPFACTORY_H #define FLIPPR_DRIVER_LAMPFACTORY_H #include "Factory.h" namespace flippR_driver { namespace output { class LampFactory : Factory { public: explicit LampFactory(nlohmann::json & object); std::map> getItemMap() override; }; } } #endif //FLIPPR_DRIVER_LAMPFACTORY_H