blob: 2164ba2974e547a1e0fe69fe6e7c30c64262a9b6 [file] [log] [blame]
#include <BaSyx/submodel/simple/dataspecification/ValueList.h>
namespace basyx {
namespace submodel {
namespace simple {
ValueList::ValueList(const std::vector<simple::ValueReferencePair> &list)
: list(list)
{}
void ValueList::addValueReferencePair(const simple::ValueReferencePair &valueRefPair)
{
this->list.push_back(valueRefPair);
}
std::vector<simple::ValueReferencePair> ValueList::getValueReferencePairs()
{
return this->list;
}
}
}
}