]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ByteValue.cpp
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / ByteValue.cpp
1 #include "ByteValue.h"
2
3 namespace Databoard {
4         namespace Value {
5                 ByteValue::ByteValue(Databoard::Type::DataType* dataBoard) : Value(dataBoard)
6                 {
7                 }
8
9                 ByteValue::~ByteValue()
10                 {
11                 }
12
13                 void ByteValue::setValue(char value)
14                 {
15                         this->value = value;
16                 }
17
18                 char ByteValue::getValue()
19                 {
20                         return value;
21                 }
22         }
23 }