]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONVDataIterator.h
Extracting the BLOCK DATA in a separate file. Changes to make it working on macosx
[u/mrichter/AliRoot.git] / MUON / AliMUONVDataIterator.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice                               */
3
4 // $Id$
5
6 /// \ingroup base
7 /// \class AliMUONVDataIterator
8 /// \brief Defines an interface of an iterator over muon data structure(s)
9 /// 
10 //  Author Laurent Aphecetche
11
12 #ifndef ALIMUONVDATAITERATOR_H
13 #define ALIMUONVDATAITERATOR_H
14
15 #ifndef ROOT_TObject
16 #  include "TObject.h"
17 #endif
18
19 class AliMUONVDataIterator : public TObject
20 {
21 public:
22   AliMUONVDataIterator();
23   virtual ~AliMUONVDataIterator();
24   
25   virtual TObject* Next() = 0;
26   
27   virtual void Reset() = 0; 
28   
29   virtual Bool_t Remove() = 0;
30   
31   ClassDef(AliMUONVDataIterator,0) // Interface for an iterator on AliMUONData.
32 };
33
34 #endif