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