implementing Quantity further

This commit is contained in:
jriegel
2013-09-10 18:25:27 +02:00
parent f4092bfdb7
commit bf3371a95d
5 changed files with 152 additions and 8 deletions

View File

@@ -53,11 +53,12 @@ public:
Quantity pow(const Quantity&)const;
//@}
static Quantity parse(const char* buffer);
protected:
double _Value;
Unit _Unit;
static Quantity parse(const char* buffer);
};
} // namespace Base