Files
flippr-code/FlippR-Driver/src/output/factories/LampFactory.h
2019-12-28 16:39:14 +01:00

30 lines
480 B
C++

/*
* 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<std::string, std::shared_ptr<items::Item>> getItemMap() override;
};
}
}
#endif //FLIPPR_DRIVER_LAMPFACTORY_H