Files
flippr-code/FlippR-Driver/src/output/factories/DisplayFactory.h
2019-12-29 15:55:43 +01:00

31 lines
558 B
C++

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