working on big refactor

This commit is contained in:
Jonas Zeunert
2018-12-14 01:09:54 +01:00
parent f3100004b9
commit 2aee0f4f9d
67 changed files with 914 additions and 619 deletions

View File

@@ -0,0 +1,34 @@
//
// Created by rhetenor on 10.10.18.
//
#ifndef flippR_driver_IOUTPUTGPIOINTERFACE_H
#define flippR_driver_IOUTPUTGPIOINTERFACE_H
#include "OutputPinController.h"
#include "output/items/DriverBoardItem.h"
#include "output/items/Sound.h"
#include "output/items/IDisplay.h"
#include <memory>
namespace flippR_driver
{
namespace output
{
class OutputPinController
{
public:
virtual ~OutputPinController() = default;
virtual void write_display(items::IDisplay &display) = 0;
//Display gpio interface!
};
}
}
#endif //flippR_driver_IOUTPUTGPIOINTERFACE_H