]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/LongType.h
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / LongType.h
1 #pragma once
2
3 #include "NumberType.h"
4
5 #include <string>
6
7 #include <climits>
8
9 namespace Databoard {
10         class Range;
11
12         namespace Type {
13
14                 class DATABOARD_API LongType : public NumberType {
15                 public:
16                         LongType();
17                         LongType(std::string unit);
18                         LongType(std::string unit, Range* range);
19
20                         virtual ~LongType();
21
22                         long minValue();
23                         long maxValue();
24
25                         virtual std::string writeOut(int indent = 0);
26
27                 protected:
28                 };
29         }
30 }