hmmm dunno if this is better
This commit is contained in:
33
FlippR-Driver/src/output/items/DriverBoardItem.h
Normal file
33
FlippR-Driver/src/output/items/DriverBoardItem.h
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user