Skip to content
Snippets Groups Projects

F consolidation

Merged Timm Fitschen requested to merge f-consolidation into dev
2 files
+ 12
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 10
0
@@ -558,6 +558,16 @@ private:
* Container for Properties of Entities.
*
* Should only be instantiated and write-accessed by the owning entity.
*
* Note that iterating over the Property contents only works via references, since the Property copy
* constructor is deliberately disabled:
*
* \code
* // Accessing single properties as reference
* auto &property = my_properties.at(0);
* // Iterating via reference
* for (auto &property : my_properties) {...}
* \endcode
*/
class Properties
: public RepeatedPtrFieldWrapper<Property,
Loading