로딩중...
검색중...
일치하는것 없음
unconstFunc.hpp 파일 참조
#include "indep/macro/overload.hpp"

이 파일의 소스 코드 페이지로 가기

매크로

#define BY_CONST_FUNC_2(type, funcCall)
 
#define BY_CONST_FUNC_1(funcCall)   BY_CONST_FUNC_2(me, funcCall)
 
#define BY_CONST_FUNC(...)   BY_OVERLOAD(BY_CONST_FUNC, __VA_ARGS__)
 

매크로 문서화

◆ BY_CONST_FUNC_2

#define BY_CONST_FUNC_2 ( type,
funcCall )
값:
{ \
type* uncThis = (type*) this; \
return uncThis->funcCall; \
}