i did the Get macro and works fine:
#define Get(x) [this]()->x
(like you see it's a lambda function header)
but i see 1 problem(sample):
Get(int)
like you see the type is inside of the macro function :(
but i need it:
int Get()
can anyone advice me for do these change?
i use c++ 11