source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/packages/common/gui/include/DialogFactory.hh @ 117

Last change on this file since 117 was 117, checked in by moretto, 11 years ago

ESAF version compilable on mac OS

File size: 629 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: DialogFactory.hh 2218 2005-10-18 23:17:30Z thea $
3// Marco Pallavicini created Oct,  4 2002
4
5#ifndef __DIALOGFACTORY_HH_
6#define __DIALOGFACTORY_HH_
7
8#include "euso.hh"
9#include "BaseDialogFactory.hh"
10
11class DialogFactory : public BaseDialogFactory {
12public:
13    static BaseDialogFactory* Get();
14    virtual ~DialogFactory();
15
16    virtual TGTransientFrame* BuildFrame( const string& name, SimuApplication*, TGWindow*, TGMainFrame* ) const;
17
18private:
19    DialogFactory();
20    static DialogFactory* fMe;
21
22    ClassDef(DialogFactory,0)
23};
24
25#endif  /* __DIALOGFACTORY_HH_ */
26
Note: See TracBrowser for help on using the repository browser.