]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/.SKEL.h
Merge from EVE-dev to HEAD.
[u/mrichter/AliRoot.git] / EVE / Reve / .SKEL.h
1 // $Header$
2
3 #ifndef REVE_CLASS_H
4 #define REVE_CLASS_H
5
6 #include <Reve/Reve.h>
7
8 #include <TObject.h>
9
10 namespace Reve {
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