로딩중...
검색중...
일치하는것 없음
unconstFunc.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
4#include "indep/macro/overload.hpp"
5
6#define BY_CONST_FUNC_2(type, funcCall) \
7 { \
8 type* uncThis = (type*) this; \
9 return uncThis->funcCall; \
10 }
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__)