Commit 0220be35 authored by captainwong's avatar captainwong

add macro DECLARE_GETTER_NONE_CONST

parent 19de8857
...@@ -63,6 +63,11 @@ public: \ ...@@ -63,6 +63,11 @@ public: \
} }
#define DECLARE_SETTER(type, val) \ #define DECLARE_SETTER(type, val) \
void set##val(const type& param) { \
val = param;\
}
#define DECLARE_SETTER_NONE_CONST(type, val) \
void set##val(type param) { \ void set##val(type param) { \
val = param;\ val = param;\
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment