Adds output factory-prototypes
This commit is contained in:
31
FlippR-Driver/src/output/factories/FlipperFactory.h
Normal file
31
FlippR-Driver/src/output/factories/FlipperFactory.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* FlipperFactory.h
|
||||
*
|
||||
* Created on: December 28, 2019
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
*/
|
||||
|
||||
#ifndef FLIPPR_DRIVER_FLIPPERFACTORY_H
|
||||
#define FLIPPR_DRIVER_FLIPPERFACTORY_H
|
||||
|
||||
#include "Factory.h"
|
||||
#include <string>
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace output
|
||||
{
|
||||
|
||||
class FlipperFactory : Factory
|
||||
{
|
||||
public:
|
||||
explicit FlipperFactory(nlohmann::json & object);
|
||||
std::map <std::string, std::shared_ptr<items::Item>> getItemMap() override;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif //FLIPPR_DRIVER_FLIPPERFACTORY_H
|
||||
Reference in New Issue
Block a user