]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Range.h
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / Range.h
1 #pragma once
2
3 #include <string>
4
5 namespace Databoard {
6
7         class Limit;
8
9         class Range {
10         public:
11                 Range();
12                 virtual ~Range();
13
14                 Limit* getLower();
15                 Limit* getUpper();
16
17                 void setLower(std::string value);
18                 void setUpper(std::string value);
19
20                 std::string writeOut();
21
22         protected:
23
24                 Limit* lower;
25                 Limit* upper;
26         };
27 }