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