class TIndArray

 file:   TIndArray.h

Function Members (Methods)

public:
TIndArray()
TIndArray(const TIndArray&)
virtual~TIndArray()
UChar_t&At(Int_t ind)
voidClear()
UInt_tGetCapacity()
UInt_tGetNumItems()
TIndArray&operator=(const TIndArray&)
voidReserve(UInt_t size)
voidSetNumItems(UInt_t items)

Data Members

private:
UChar_t*fArr[fElems] The array
UInt_tfCapacity!Capacity of the array
UInt_tfElemsNumber of elements stored in the array

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

TIndArray(const TIndArray& )
{}
virtual ~TIndArray()
void Reserve(UInt_t size)
UInt_t GetCapacity()
{ return fCapacity; }
UInt_t GetNumItems()
{ return fElems; }
void SetNumItems(UInt_t items)
{ fElems = items;}
UChar_t & At(Int_t ind)
{ return fArr[ind]; }
void Clear()
{ fElems = 0; }

Author: Lukasz Janyst 23/01/2008
Last change: root/tree:$Id: TIndArray.h 21861 2008-01-26 09:47:41Z brun $
Last generated: 2008-06-25 08:47

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.