#include <Inventor/lists/SbPList.h>
Inheritance diagram for SbPList::
Public Methods | |
SbPList (void) | |
SbPList (const int sizehint) | |
SbPList (const SbPList &l) | |
void * | get (const int index) const |
void | set (const int index, void *const item) |
void * | operator[] (const int index) const |
void *& | operator[] (const int index) |
This class is for most purposes superseded by the Coin-specific SbList class.
|
Default constructor. |
|
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
|
|
Copy constructor.
|
|
Returns element at index. Does not expand array bounds if index is outside the list. |
|
Index operator to set element at index. Does not expand array bounds if index is outside the list. |
|
Returns element at index.
Overloaded from parent class to automatically expand the size of the internal array if index is outside the current bounds of the list. The values of any additional pointers are then set to Reimplemented in SoBaseList, SoEngineList, SoNodeList, and SoPathList. |
|
Index operator to set element at index.
Overloaded from parent class to automatically expand the size of the internal array if index is outside the current bounds of the list. The values of any additional pointers are then set to Reimplemented in SoActionMethodList. |