]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEERBase/AliVTPCseed.h
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliVTPCseed.h
1 #ifndef ALIVTPCSEED_H
2 #define ALIVTPCSEED_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               *
6  * Primary Author: Mikolaj Krzewicki, mkrzewic@cern.ch
7  */
8 #include "Rtypes.h"
9 class AliTPCseed;
10
11 class AliVTPCseed {
12   public:
13   AliVTPCseed() {}
14   virtual ~AliVTPCseed() {}
15   virtual void CopyToTPCseed( AliTPCseed &) const = 0;
16 };
17
18 #endif