Open Inventor Reference
SoBaseList Class Reference

Subclasses of the SbPList class which hold lists of pointers of a specific type. More...

#include <Inventor/SoLists.h>

Inheritance diagram for SoBaseList:
SbPList SoEngineList SoNodeList SoPathList SoChildList

Public Member Functions

 SoBaseList ()
 Constructor. More...
 
 SoBaseList (int size)
 Constructor that pre-allocates storage for size pointers. More...
 
 SoBaseList (const SoBaseList &l)
 Constructor that copies the contents of another list. More...
 
 ~SoBaseList ()
 Destructor. More...
 
void append (SoBase *ptr)
 Adds a pointer to the end of the list. More...
 
void insert (SoBase *ptr, int addBefore)
 Inserts given pointer in list before pointer with given index. More...
 
void remove (int which)
 Removes pointer with given index. More...
 
void truncate (int start)
 Removes all pointers after one with given index, inclusive. More...
 
void copy (const SoBaseList &l)
 Copies a list, keeping all reference counts correct. More...
 
SoBaseListoperator= (const SoBaseList &l)
 Copies a list, keeping all reference counts correct. More...
 
SoBaseoperator[] (int i) const
 Access an element of a list. More...
 
void set (int i, SoBase *ptr)
 Sets an element of a list. More...
 
void addReferences (bool flag)
 Indicates whether to call ref() and unref() for bases in the list when adding/removing them. More...
 
- Public Member Functions inherited from SbPList
 SbPList ()
 Constructor. More...
 
 SbPList (int initSize)
 initSize specifies an initial size for the list, which is useful as an optimization if you can estimate the length of the list before you construct it. More...
 
 SbPList (const SbPList &pl)
 Copy constructor. More...
 
 ~SbPList ()
 Destructor. More...
 
void append (void *ptr)
 Adds given pointer to end of list. More...
 
int find (const void *ptr) const
 Returns index of given pointer in list, or -1 if not found. More...
 
void insert (void *ptr, int addBefore)
 Inserts given pointer in list before pointer with given index. More...
 
void remove (int which)
 Removes pointer with given index. More...
 
int getLength () const
 Returns number of pointers in list. More...
 
void truncate (int start)
 Removes all pointers after one with given index, inclusive. More...
 
void copy (const SbPList &pl)
 Copy a list. More...
 
SbPListoperator= (const SbPList &pl)
 Assignment operator; copies list into this list. More...
 
void *& operator[] (int i) const
 Returns pointer with given index. More...
 
bool operator== (const SbPList &pl) const
 Equality and inequality operators. More...
 
bool operator!= (const SbPList &pl) const
 Equality and inequality operators. More...
 
void * get (int i) const
 Internal versions of [] that do not check for bounds: More...
 
void set (int i, void *j)
 

Detailed Description

Each contains: A default constructor A constructor taking an initial number of items in the list An "append" function that adds a pointer to the end of the list The index ([]) operator that returns the nth pointer in the list Maintains a list of pointers to instances of the SoBase classes.

This subclass of SbPList holds lists of pointers to instances of classes derived from SoBase (an abstract class). A flag indicates whether adding an instance pointer to the list should add a reference to the instance. If this flag is TRUE, then adding and removing pointers from the list updates reference counts in the corresponding instances.

See Also
SoBase, SoNodeList, SoPathList

Definition at line 117 of file SoLists.h.

Constructor & Destructor Documentation

◆ SoBaseList() [1/3]

SoBaseList::SoBaseList ( )

◆ SoBaseList() [2/3]

SoBaseList::SoBaseList ( int  size)

◆ SoBaseList() [3/3]

SoBaseList::SoBaseList ( const SoBaseList l)

◆ ~SoBaseList()

SoBaseList::~SoBaseList ( )
inline

Definition at line 126 of file SoLists.h.

References SbPList::truncate().

Member Function Documentation

◆ addReferences()

void SoBaseList::addReferences ( bool  flag)
inline

The default value is TRUE.

Definition at line 155 of file SoLists.h.

◆ append()

void SoBaseList::append ( SoBase ptr)

◆ copy()

void SoBaseList::copy ( const SoBaseList l)

◆ insert()

void SoBaseList::insert ( SoBase ptr,
int  addBefore 
)

◆ operator=()

SoBaseList& SoBaseList::operator= ( const SoBaseList l)
inline

Definition at line 143 of file SoLists.h.

References SbPList::copy().

◆ operator[]()

SoBase* SoBaseList::operator[] ( int  i) const
inline

Definition at line 147 of file SoLists.h.

◆ remove()

void SoBaseList::remove ( int  which)

◆ set()

void SoBaseList::set ( int  i,
SoBase ptr 
)

◆ truncate()

void SoBaseList::truncate ( int  start)

The documentation for this class was generated from the following file: