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