void myfunc(int &a)
int val;myfunc(val);
void myfunc(int *a)
int val;myfunc(&val);
C++ (Qt)QLabel lab("Test");