Go to the documentation of this file.
61 #define CTK_CONSTRUCTOR_NO_ARG_CPP(PUB) \
62 PUB::PUB(): d_ptr(new PUB##Private) \
71 #define CTK_CONSTRUCTOR_1_ARG_CPP(PUB, _ARG1) \
72 PUB::PUB(_ARG1 _parent) \
73 : Superclass( _parent ) \
74 , d_ptr(new PUB##Private) \
85 #define CTK_SET_CPP(PUB, _TYPE, _NAME, _VARNAME) \
86 void PUB::_NAME(_TYPE var) \
99 #define CTK_GET_CPP(PUB, _TYPE, _NAME, _VARNAME) \
100 _TYPE PUB::_NAME()const \
103 return d->_VARNAME; \