implemented output driver

This commit is contained in:
Jonas Zeunert
2018-10-10 11:58:31 +02:00
parent 46dd4ba6c5
commit 10a55412fe
3 changed files with 47 additions and 8 deletions

View File

@@ -25,8 +25,9 @@ namespace output
class OutputDriver : public IOutputDriver
{
public:
OutputDriver();
virtual ~OutputDriver();
OutputDriver(std::map<std::string, std::shared_ptr<ICabinetItem>> cabinet_items, std::map<char, std::shared_ptr<IDisplay>> displays, std::map<std::string, std::shared_ptr<ISound>> sounds);
virtual ~OutputDriver() = default;
std::vector<std::shared_ptr<ICabinetItem>> get_cabinet_items();
std::vector<std::shared_ptr<ISound>> get_sounds();