]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveDet/.SKEL-ged.h
Move contents of EVE/Alieve to EVE/EveDet as most code will remain there.
[u/mrichter/AliRoot.git] / EVE / EveDet / .SKEL-ged.h
1 // $Header$
2
3 #ifndef ALIEVE_CLASS_H
4 #define ALIEVE_CLASS_H
5
6 #include <TGedFrame.h>
7
8 class TGCheckButton;
9 class TGNumberEntry;
10 class TGColorSelect;
11
12 namespace Alieve {
13
14 class STEM;
15
16 class CLASS : public TGedFrame
17 {
18 private:
19   CLASS(const CLASS&);            // Not implemented
20   CLASS& operator=(const CLASS&); // Not implemented
21
22 protected:
23   STEM* fM; // fModel dynamic-casted to CLASS
24
25   // Declare widgets
26   // TGSomeWidget*   fXYZZ;
27
28 public:
29   CLASS(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
30   virtual ~CLASS();
31
32   virtual void SetModel(TObject* obj);
33
34   // Declare callback/slot methods
35   // void DoXYZZ();
36
37   ClassDef(CLASS, 0); // Editor for STEM
38 }; // endclass CLASS
39
40 }
41
42 #endif