/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #ifdef __CINT__ #include #else #include #include #endif 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()); }