Logo ROOT   6.08/07
Reference Guide
main.cpp
Go to the documentation of this file.
1 #include "TQApplication.h"
2 #include "TQRootApplication.h"
3 #include "qtrootexample1.h"
4 #include "TBrowser.h"
5 
6 int main( int argc, char ** argv )
7 {
8  TQApplication app("uno",&argc,argv);
9  TQRootApplication a( argc, argv, 0);
10  qtrootexample1 *w = new qtrootexample1;
11  w->show();
12  new TBrowser();
13  a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
14  a.exec();
15  return 0;
16 }
17 
TArc * a
Definition: textangle.C:12
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:41
int main(int argc, char **argv)
Main program.
Definition: main.cpp:22