renamed impl to detail

This commit is contained in:
Jonas Zeunert
2018-12-14 16:16:44 +01:00
parent b663e130ac
commit 3b72274d6b
43 changed files with 111 additions and 111 deletions

View File

@@ -0,0 +1,41 @@
/*
* Lamp.h
*
* Created on: Aug 2, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_LAMP_H_
#define _SRC_OUTPUT_LAMP_H_
#include "output/items/Lamp.h"
#include "output/items/DriverBoardItem.h"
namespace flippR_driver
{
namespace output
{
namespace items
{
namespace detail
{
class Lamp : public DriverBoardItem, public items::Lamp
{
public:
Lamp(std::shared_ptr<DriverBoardPinController> pin_controller, uint8_t address, std::string name);
~Lamp() override = default;
void activate() override;
void deactivate() override;
bool is_activated() override;
private:
bool activated;
};
}
}
} /* namespace output */
}
#endif