#include "ByteValue.h" namespace Databoard { namespace Value { ByteValue::ByteValue(Databoard::Type::DataType* dataBoard) : Value(dataBoard) { } ByteValue::~ByteValue() { } void ByteValue::setValue(char value) { this->value = value; } char ByteValue::getValue() { return value; } } }