]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ByteValue.h
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / ByteValue.h
1 #pragma once
2
3 #include "Value.h"
4
5 namespace Databoard {
6         namespace Value {
7
8                 class DATABOARD_API ByteValue : public Value {
9                 public:
10                         ByteValue(Databoard::Type::DataType* dataBoard);
11                         virtual ~ByteValue();
12
13                         void setValue(char value);
14                         char getValue();
15
16                         virtual std::string writeOut(int indent = 0);
17                         virtual bool equals(const Value* other);
18
19                 protected:
20
21                         char value;
22                 };
23         }
24 }