source: trunk/MagicSoft/Cosy/starg.cc@ 924

Last change on this file since 924 was 924, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 502 bytes
Line 
1#include <iostream.h>
2
3#include <TROOT.h>
4#include <TApplication.h>
5
6#include "MGStarguider.h"
7
8/* ---------------------------------------------------------------------- */
9
10//extern void InitGui();
11//VoidFuncPtr_t initfuncs[] = { InitGui, 0 };
12
13int main(int argc, char **argv)
14{
15 TROOT root("GUI", "GUI test environement"); //, initfuncs);
16
17 TApplication app("Starguider", &argc, argv);
18
19 MGStarguider starg;
20
21 starg.Loop(0);
22
23 app.Run();
24
25 cout << "Exit." << endl;
26
27 return 0;
28}
Note: See TracBrowser for help on using the repository browser.