Subversion Repositories f9daq

Rev

Blame | Last modification | View Log | RSS feed

  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. }
  13.