[Documentation] [TitleIndex] [WordIndex

Only released in EOL distros:  

Contents

rve_properties provides a way to store configuration data in a node similar to how the parameter server works. It differs from the parameter server in that:

A simple example of using properties:

   1 PropertyNodePtr pn(new PropertyNode);
   2 uint32_t val = 5;
   3 pn->set("foo/bar/baz", val);
   4 val = pn->get<uint32_t>("foo/bar/baz");


2024-04-13 13:08