added const ref getter

This commit is contained in:
Anselme 2017-01-22 11:33:25 +01:00
parent f587759317
commit 5ade0127be

View File

@ -227,6 +227,7 @@ public:
PropertyType getDataType() { return Property<T>::getStaticPropertyType(); }
std::vector<T> &getValueRef() { return value; }
const std::vector<T> &getValueRef() const { return value; }
unsigned int getArraySize() { return value.size(); }
};