#include <qapplication.h>
#include "hello.h"

int main( int argc, char **argv )
{
    QApplication a( argc, argv );

    MyPushButton* hello = new MyPushButton( "Hello world!" );
    hello->resize( 100, 30 );

    a.setMainWidget( hello );
    hello->show();
    return a.exec();
}


syntax highlighted by Code2HTML, v. 0.9.1