X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fcpp%2FDataBoardTest%2FDataBoard%2FByteType.cpp;fp=bundles%2Forg.simantics.databoard%2Fcpp%2FDataBoardTest%2FDataBoard%2FByteType.cpp;h=a1f189627b52c2bfa6145cbb455ffbbb50eb7f61;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ByteType.cpp b/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ByteType.cpp new file mode 100644 index 000000000..a1f189627 --- /dev/null +++ b/bundles/org.simantics.databoard/cpp/DataBoardTest/DataBoard/ByteType.cpp @@ -0,0 +1,63 @@ +#include "ByteType.h" + +#include "Range.h" +#include "Limit.h" + +namespace Databoard { + namespace Type { + + ByteType::ByteType() : NumberType() + { + this->range = NULL; + } + + ByteType::ByteType(std::string unit) : NumberType(unit) + { + this->unit = unit; + this->range = NULL; + } + + ByteType::ByteType(std::string unit, Range* range) : NumberType(unit, range) + { + this->unit = unit; + this->range = range; + } + + ByteType::~ByteType() + { + } + + char ByteType::minValue() + { + if(range == NULL) return SCHAR_MIN; + + Limit* l = range->getLower(); + + char value = l->getByte(SCHAR_MIN); + + return value; + } + + char ByteType::maxValue() + { + if(range == NULL) return SCHAR_MAX; + + Limit* l = range->getUpper(); + + char value = l->getByte(SCHAR_MAX); + + return value; + } + + std::string ByteType::writeOut(int indent) + { + std::string s; + + s.append("Byte"); + + s += NumberType::writeOut(indent + 1); + + return s; + } + } +}