Adds output factory-prototypes

This commit is contained in:
Johannes Wendel
2019-12-28 16:39:14 +01:00
parent 6d5173424f
commit 2e37542467
14 changed files with 289 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
/*
* SoundFactory.cpp
*
* Created on: December 28, 2019
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "SoundFactory.h"
namespace flippR_driver
{
namespace output
{
SoundFactory::SoundFactory(nlohmann::json &object) : Factory(object)
{
}
std::map<std::string, std::shared_ptr<items::Item>> SoundFactory::getItemMap()
{
return std::map<std::string, std::shared_ptr<items::Item>>();
}
}
}