add property creator for basic std::vector

This commit is contained in:
Alexandra Heuschling
2021-02-26 19:10:57 +01:00
parent 5c0066b490
commit 0b7aea5dee

View File

@@ -75,6 +75,12 @@ OM_REGISTER_PROPERTY_TYPE(double)
OM_REGISTER_PROPERTY_TYPE(float)
OM_REGISTER_PROPERTY_TYPE(int)
OM_REGISTER_PROPERTY_TYPE(std::vector<int>)
OM_REGISTER_PROPERTY_TYPE(std::vector<double>)
OM_REGISTER_PROPERTY_TYPE(std::vector<float>)
OM_REGISTER_PROPERTY_TYPE(std::vector<char>)
OM_REGISTER_PROPERTY_TYPE(std::vector<bool>)
OM_REGISTER_PROPERTY_TYPE(short)
OM_REGISTER_PROPERTY_TYPE(unsigned char);