Adds output factory-prototypes
This commit is contained in:
29
FlippR-Driver/src/output/factories/LampFactory.h
Normal file
29
FlippR-Driver/src/output/factories/LampFactory.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* 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
|
||||
Reference in New Issue
Block a user