]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/.SKEL.h
Merge from EVE-dev to HEAD.
[u/mrichter/AliRoot.git] / EVE / Reve / .SKEL.h
CommitLineData
5a5a1232 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
10namespace Reve {
11
12class CLASS
13{
a8600b56 14private:
15 CLASS(const CLASS&); // Not implemented
16 CLASS& operator=(const CLASS&); // Not implemented
17
5a5a1232 18protected:
19
20public:
21 CLASS();
a8600b56 22 virtual ~CLASS() {}
5a5a1232 23
24 ClassDef(CLASS, 1);
25}; // endclass CLASS
26
27}
28
29#endif