]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/.SKEL-ged.h
New file: initialization script for reve when launched from root.exe (there is unsolv...
[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
8class TGCheckButton;
9class TGNumberEntry;
10class TGColorSelect;
11
12namespace Reve {
13
14class STEM;
15
16class CLASS : public TGedFrame
17{
18protected:
19 STEM* fM; // fModel dynamic-casted to CLASS
20
21public:
22 CLASS(const TGWindow* p, Int_t id, Int_t width = 170, Int_t height = 30, UInt_t options = kChildFrame, Pixel_t back = GetDefaultFrameBackground());
23 ~CLASS();
24
25 virtual void SetModel(TVirtualPad* pad, TObject* obj, Int_t event);
26
27 // void DoXYZZ();
28
29 ClassDef(CLASS, 1); // Editor for STEM
30}; // endclass CLASS
31
32}
33
34#endif