library: libCore
#include "TCollection.h"

TIter


class description - header file - source file
viewCVS header - viewCVS source

class TIter

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TIter(TIterator* it)
TIter(const TIter& iter)
TIter(const TCollection* col, Bool_t dir = kIterForward)
virtual~TIter()
static TClass*Class()
const TCollection*GetCollection() const
Option_t*GetOption() const
virtual TClass*IsA() const
TObject*Next()
TObject*operator()()
TIter&operator=(const TIter& rhs)
voidReset()
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)
protected:
TIter()

Data Members

private:
TIterator*fIteratorcollection iterator

Class Description

                                                                      
 Collection abstract base class. This class describes the base        
 protocol all collection classes have to implement. The ROOT          
 collection classes always store pointers to objects that inherit     
 from TObject. They never adopt the objects. Therefore, it is the     
 user's responsability to take care of deleting the actual objects    
 once they are not needed anymore. In exceptional cases, when the     
 user is 100% sure nothing else is referencing the objects in the     
 collection, one can delete all objects and the collection at the     
 same time using the Delete() function.                               
                                                                      
 Collections can be iterated using an iterator object (see            
 TIterator). Depending on the concrete collection class there may be  
 some additional methods of iterating. See the repective classes.     
                                                                      
 TCollection inherits from TObject since we want to be able to have   
 collections of collections.                                          
                                                                      
 In a later release the collections may become templatized.           
                                                                      
/* */

TIter(const TIter &iter)
 Copy a TIter. This involves allocating a new TIterator of the right
 sub class and assigning it with the original.
TIter & operator=(const TIter &rhs)
 Assigning an TIter to another. This involves allocatiing a new TIterator
 of the right sub class and assigning it with the original.
TObject * operator()(const char *name)
TIter()
{ }
TIter(const TCollection *col, Bool_t dir = kIterForward)
{ }
TIter(TIterator *it)
{ }
virtual ~TIter()
{ SafeDelete(fIterator) }
TObject * Next()
{ return fIterator ? fIterator->Next() : 0; }
const TCollection * GetCollection()
{ return fIterator ? fIterator->GetCollection() : 0; }
Option_t * GetOption()
{ return fIterator ? fIterator->GetOption() : ""; }
void Reset()
{ if (fIterator) fIterator->Reset(); }

Author: Fons Rademakers 13/08/95
Last update: root/cont:$Name: $:$Id: TCollection.cxx,v 1.34 2006/08/08 17:02:26 rdm Exp $
Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.