]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/.SKEL-ged.h
First big commit of the mchview program and its accompanying library,
[u/mrichter/AliRoot.git] / EVE / Reve / .SKEL-ged.h
CommitLineData
5a5a1232 1// $Header$
2
3#ifndef REVE_CLASS_H
4#define REVE_CLASS_H
5
6#include <TGedFrame.h>
7
32e219c2 8class TGButton;
5a5a1232 9class TGCheckButton;
10class TGNumberEntry;
11class TGColorSelect;
12
13namespace Reve {
14
15class STEM;
16
17class CLASS : public TGedFrame
18{
a8600b56 19private:
20 CLASS(const CLASS&); // Not implemented
21 CLASS& operator=(const CLASS&); // Not implemented
22
5a5a1232 23protected:
24 STEM* fM; // fModel dynamic-casted to CLASS
25
a8600b56 26 // Declare widgets
27 // TGSomeWidget* fXYZZ;
28
5a5a1232 29public:
a8600b56 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();
5a5a1232 32
a8600b56 33 virtual void SetModel(TObject* obj);
5a5a1232 34
a8600b56 35 // Declare callback/slot methods
5a5a1232 36 // void DoXYZZ();
37
32e219c2 38 ClassDef(CLASS, 0); // Editor for STEM
5a5a1232 39}; // endclass CLASS
40
41}
42
43#endif