Properties - 0.9.6 |RTTR
Properties

For registration of a property to RTTR you can use following functions: registration::property() and registration::property_readonly().

They have following synopsis:

template<typename A>
registration rttr::registration::property( string_view name, A accessor );
template<typename A>
registration rttr::registration::property_readonly(string_view name, A accessor);
  • name is the name of the property
  • A is the pointer to the property

It is also possible to use function pointers for the property as getter and setter functions. Therefore the property() function is overloaded.

It has following synopsis:

template<typename A1, typename A2>
registration rttr::registration::property( string_view name, A1 getter, A2 setter );
  • name is the name of the property
  • A1 is the function pointer to the getter and A2 is the function pointer to the setter of the property

The following example shows how to use these register functions:

#include <rttr/registration>
using namespace rttr;
static const double pi = 3.14259;
static std::string global_text;
void set_text(const std::string& text) { global_text = text; }
const std::string& get_text() { return global_text; }
{
using namespace rttr;
registration::property("global_text", &get_text, &set_text);
}

There can be not two global properties with the same name. The later registered property with an already existing name will be discarded.

Invoke properties

For setting and getting a property you have two options like with methods:

using namespace rttr;
int main()
{
// option 1, via type
variant value = type::get_property_value("PI"); // remark the capitalization of "PI"
if (value && value.is_type<double>())
std::cout << value.get_value<double>() << std::endl; // outputs: "3.14259"
// option 2, via property class
property prop = type::get_global_property("PI");
if (prop)
{
value = prop.get_value(instance());
if (value.is_valid() && value.is_type<double>())
std::cout << value.get_value<double>() << std::endl; // outputs: "3.14259"
}
}

The static type::set_property_value() function calls directly a global property with the given name. This function has a bool value as return value, indicating whether the property was invoked or not. For retrieving a property value use the static function type::get_property_value(). The returned variant object contains the property value and also indicates whether the call to retrieve the property was successful or not. When the variant is not valid then the call could not be done.

Another option is to retrieve a handle to the property via type::get_global_property(). This is the preferred option, because then you directly set/get the value without searching every time for the property. The property object is very lightweight and can be simply copied around different locations. The object stays valid till end of the main() function.