我的main.cpp文件如下:
#include<qapplication.h>
#include"cfconvmainform.h"
int main(int argc,char ** argv)
{
QApplication a(argc,argv);
cfconvMainForm w;
w.show();
a.connect(&a, SIGNAL(lastWindowClose()),&a,SLOT(quit()));
return a.exec();
}
make的时候系统提示:
main.cpp:8: 'cfconvMainForm' undeclared (first use this function)
main.cpp:8: (Each undeclared identifier is reported only once for each function it appears in.)
main.cpp:8:parse error before ';' token
main.cpp:9:'w' undeclared (first use this function)
make:*** [main.o] Error 1
请问这个问题怎么解决???急!!! 谢谢各位了!!!