top of page

another C#-like property accessor for C++11 and above on Windows, macOS, Linux, iOS and android.

 

properties

  • properties add c#-like property accessor to your c++ class.

  • properties is distributed as a single header file.

 

What is it ?

 

A property is a member that provides a flexible mechanism to read, write, or compute the value of a private field.

 

Properties can be used as if they are public data members, but they are actually special methods called accessors.

 

This enables data to be accessed easily and still helps promote the safety and flexibility of methods.

bottom of page