]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONVDataIterator.h
Adding HLTbase to the list of libraries
[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   /// \todo add comment
26   virtual TObject* Next() = 0;
27   
28   /// \todo add comment
29   virtual void Reset() = 0; 
30   
31   /// \todo add comment
32   virtual Bool_t Remove() = 0;
33   
34   ClassDef(AliMUONVDataIterator,0) // Interface for an iterator on AliMUONData.
35 };
36
37 #endif