]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Range.h
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / cpp / DataBoardTest / DataBoard / Range.h
diff --git a/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Range.h b/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Range.h
new file mode 100644 (file)
index 0000000..18d5d36
--- /dev/null
@@ -0,0 +1,27 @@
+#pragma once\r
+\r
+#include <string>\r
+\r
+namespace Databoard {\r
+\r
+       class Limit;\r
+\r
+       class Range {\r
+       public:\r
+               Range();\r
+               virtual ~Range();\r
+\r
+               Limit* getLower();\r
+               Limit* getUpper();\r
+\r
+               void setLower(std::string value);\r
+               void setUpper(std::string value);\r
+\r
+               std::string writeOut();\r
+\r
+       protected:\r
+\r
+               Limit* lower;\r
+               Limit* upper;\r
+       };\r
+}\r