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,33 @@
//
// Created by rhetenor on 21.11.18.
//
#include "Item.h"
namespace flippR_driver
{
namespace output
{
namespace items
{
namespace detail
{
Item::Item(uint8_t address, std::string name) :
address(address), name(std::move(name))
{}
uint8_t Item::get_address() const
{
return this->address;
}
std::string Item::get_name() const
{
return this->name;
}
}
}
}
}