]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveDet/.SKEL.h
No need for TGLObject.h (C.Holm)
[u/mrichter/AliRoot.git] / EVE / EveDet / .SKEL.h
1 // $Header$
2
3 #ifndef AliEveCLASS_H
4 #define AliEveCLASS_H
5
6 #include <Reve/Reve.h>
7
8 #include <TObject.h>
9
10 namespace Alieve {
11
12 class CLASS
13 {
14 public:
15   CLASS();
16   virtual ~CLASS() {}
17
18 protected:
19
20 private:
21   CLASS(const CLASS&);            // Not implemented
22   CLASS& operator=(const CLASS&); // Not implemented
23
24   ClassDef(CLASS, 0);  // Short desc/purpose of CLASS
25 };
26
27 }
28
29 #endif