34 lines
548 B
C++
34 lines
548 B
C++
//
|
|
// Created by rhetenor on 23.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_IDRIVERBOARDITEM_H
|
|
#define FLIPPR_DRIVER_IDRIVERBOARDITEM_H
|
|
|
|
#include "output/items/Item.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class DriverBoardItem : public Item
|
|
{
|
|
public:
|
|
DriverBoardItem(std::shared_ptr<IOutputGPIOInterface> output_gpio_interface, uint8_t address, std::string name) :
|
|
Item(output_gpio_interface, address, name) {}
|
|
~DriverBoardItem() override = default;
|
|
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif //FLIPPR_DRIVER_IDRIVERBOARDITEM_H
|