Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
326 | f9daq | 1 | #include <TApplication.h> |
2 | #include <TEnv.h> |
||
3 | #include "Feb_Gui.h" |
||
4 | #include <TGButton.h> |
||
5 | |||
6 | int main(int argc, char **argv) { |
||
7 | // gEnv->SetValue("Gui.DefaultFont", "-*-helvetica-medium-r-*-*-18-*-*-*-*-*-iso8859-1"); |
||
8 | TApplication theApp("App",&argc,argv); |
||
9 | FebMainFrame *m= new FebMainFrame(NULL,1000,800); |
||
10 | theApp.Run(); |
||
11 | return 0; |
||
12 | } |