27 lines
549 B
C++
27 lines
549 B
C++
/*
|
|
* SoundFactory.cpp
|
|
*
|
|
* Created on: December 28, 2019
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
|
*/
|
|
#include <output/SoundBoardPinController.h>
|
|
#include "SoundFactory.h"
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
SoundFactory::SoundFactory(nlohmann::json &object, std::shared_ptr<SoundBoardPinController> pin_controller) :
|
|
Factory{object, pin_controller}
|
|
{
|
|
|
|
}
|
|
|
|
std::map<std::string, std::shared_ptr<items::Item>> SoundFactory::getItemMap()
|
|
{
|
|
return std::map<std::string, std::shared_ptr<items::Item>>();
|
|
}
|
|
|
|
}
|
|
}
|