]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONVDataIterator.h
Additional protection in case of negative indexes. More investigation is needed
[u/mrichter/AliRoot.git] / MUON / AliMUONVDataIterator.h
CommitLineData
70b4a8d6 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
7/// \class AliMUONVDataIterator
8/// \brief
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
19class AliMUONVDataIterator : public TObject
20{
21public:
22 virtual ~AliMUONVDataIterator();
23
24 virtual TObject* Next() = 0;
25
26 virtual void Reset() = 0;
27
28 virtual Bool_t Remove() = 0;
29
30 ClassDef(AliMUONVDataIterator,0) // Interface for an iterator on AliMUONData.
31};
32
33#endif