X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fcpp%2FDataBoardTest%2FDataBoard%2FRange.h;fp=bundles%2Forg.simantics.databoard%2Fcpp%2FDataBoardTest%2FDataBoard%2FRange.h;h=18d5d36cf29d250c14710d798b8390a65879e48f;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git 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 index 000000000..18d5d36cf --- /dev/null +++ b/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/Range.h @@ -0,0 +1,27 @@ +#pragma once + +#include + +namespace Databoard { + + class Limit; + + class Range { + public: + Range(); + virtual ~Range(); + + Limit* getLower(); + Limit* getUpper(); + + void setLower(std::string value); + void setUpper(std::string value); + + std::string writeOut(); + + protected: + + Limit* lower; + Limit* upper; + }; +}