Open Inventor Reference
SoPathList Class Reference

Maintains a list of pointers to paths. More...

#include <Inventor/SoLists.h>

Inheritance diagram for SoPathList:
SoBaseList SbPList

Public Member Functions

 SoPathList ()
 
 SoPathList (int size)
 
 SoPathList (const SoPathList &l)
 
 ~SoPathList ()
 Destructor. More...
 
void append (SoPath *ptr)
 Adds a path to the end of the list. More...
 
SoPathListoperator= (const SoPathList &l)
 Copies a list, keeping all reference counts correct. More...
 
SoPathoperator[] (int i) const
 
int findPath (const SoPath &path)
 Returns the index of the matching path in the list, or -1 if not found. More...
 
void sort ()
 Sorts list in place based on (1) increasing address of head node, then (2) increasing indices of children. More...
 
void uniquify ()
 Given a sorted list, removes any path that (1) is a duplicate, or (2) goes through a node that is the tail of another path. More...
 
- Public Member Functions inherited from SoBaseList
 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

This subclass of SoBaseList holds lists of pointers to SoPaths. It updates reference counts to paths in the list whenever adding or removing pointers.

See Also
SoPath

Definition at line 212 of file SoLists.h.

Constructor & Destructor Documentation

◆ SoPathList() [1/3]

SoPathList::SoPathList ( )
inline

Definition at line 214 of file SoLists.h.

◆ SoPathList() [2/3]

SoPathList::SoPathList ( int  size)
inline

Definition at line 215 of file SoLists.h.

◆ SoPathList() [3/3]

SoPathList::SoPathList ( const SoPathList l)
inline

Definition at line 216 of file SoLists.h.

◆ ~SoPathList()

SoPathList::~SoPathList ( )
inline

Definition at line 218 of file SoLists.h.

Member Function Documentation

◆ append()

void SoPathList::append ( SoPath ptr)
inline

Definition at line 221 of file SoLists.h.

◆ findPath()

int SoPathList::findPath ( const SoPath path)

◆ operator=()

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

Definition at line 225 of file SoLists.h.

References SoBaseList::copy().

◆ operator[]()

SoPath* SoPathList::operator[] ( int  i) const
inline

Definition at line 228 of file SoLists.h.

◆ sort()

void SoPathList::sort ( )

◆ uniquify()

void SoPathList::uniquify ( )

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