properties
another c#-like property accessor for c++11 and above.
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.
* Github repository : https://github.com/gammasoft71/properties
* Homepage : https://gammasoft71.wixsite.com/properties
* Reference guide :...