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