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