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