#include <QtGui/QApplication>
#include <QtGui/QPushButton>
#include <Qt3Support>
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!", 0 );
hello.resize( 100, 30 );
a.setMainWidget( &hello );
hello.show();
return a.exec();
}
为什么有好多的错误?高手指点