Go to the documentation of this file.
34 #define BASIC_ACCESSOR(type, var, method, Method) \
35 type method() const { return var; }; \
36 void set ## Method(const type value) { var = value; }
37 #define CLASS_ACCESSOR(type, var, method, Method) \
38 type method() const { return var; }; \
39 void set ## Method(const type & value) { var = value; }