int myFunct(int a, dobule * b, char * c[]) {
return __myFunct(a, b, c);
}
#define W_FUNCT(retType, functName, ...) \
retType functName(__VA_ARGS__) { return __##functName(?????????????); } \
retType __##functName(__VA_ARGS__) { qDebug()<<"funct2";}
W_FUNCT(int, test1, int a, int b)