]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/EveDet/.SKEL-ged.h
Merge changes from branches/dev/EVE. This branch was following development in ROOT...
[u/mrichter/AliRoot.git] / EVE / EveDet / .SKEL-ged.h
CommitLineData
5a5a1232 1// $Header$
2
a15e6d7d 3#ifndef AliEveCLASS_H
4#define AliEveCLASS_H
5a5a1232 5
6#include <TGedFrame.h>
7
8class TGCheckButton;
9class TGNumberEntry;
10class TGColorSelect;
11
12namespace Alieve {
13
14class STEM;
15
16class CLASS : public TGedFrame
17{
a8600b56 18private:
19 CLASS(const CLASS&); // Not implemented
20 CLASS& operator=(const CLASS&); // Not implemented
21
5a5a1232 22protected:
23 STEM* fM; // fModel dynamic-casted to CLASS
24
a8600b56 25 // Declare widgets
26 // TGSomeWidget* fXYZZ;
27
5a5a1232 28public:
a8600b56 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();
5a5a1232 31
a8600b56 32 virtual void SetModel(TObject* obj);
5a5a1232 33
a8600b56 34 // Declare callback/slot methods
5a5a1232 35 // void DoXYZZ();
36
092578a7 37 ClassDef(CLASS, 0); // Editor for STEM
5a5a1232 38}; // endclass CLASS
39
40}
41
42#endif