이 파일의 문서화 페이지로 가기
4#include "indep/macro/overload.hpp"
6#define BY_CONST_FUNC_2(type, funcCall) \
8 type* uncThis = (type*) this; \
9 return uncThis->funcCall; \
11#define BY_CONST_FUNC_1(funcCall) BY_CONST_FUNC_2(me, funcCall)
12#define BY_CONST_FUNC(...) BY_OVERLOAD(BY_CONST_FUNC, __VA_ARGS__)