Add UDAValue constructor which takes dimension
This commit is contained in:
parent
3c0c94ff71
commit
157d3e4279
@ -34,6 +34,7 @@ public:
|
||||
UDAValue();
|
||||
explicit UDAValue(double);
|
||||
explicit UDAValue(const std::string&);
|
||||
explicit UDAValue(const Dimension& dim);
|
||||
UDAValue(const UDAValue& src, const Dimension& dim);
|
||||
UDAValue(double data, const Dimension& dim);
|
||||
UDAValue(const std::string& data, const Dimension& dim);
|
||||
|
@ -36,6 +36,10 @@ UDAValue::UDAValue(double value, const Dimension& dim_):
|
||||
{
|
||||
}
|
||||
|
||||
UDAValue::UDAValue(const Dimension& dim_):
|
||||
UDAValue(0, dim_)
|
||||
{
|
||||
}
|
||||
|
||||
UDAValue::UDAValue() :
|
||||
UDAValue(0)
|
||||
|
Loading…
Reference in New Issue
Block a user