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