#include <Inventor/lists/SbIntList.h>
Inheritance diagram for SbIntList::
Public Methods | |
SbIntList (void) | |
SbIntList (const int sizehint) | |
SbIntList (const SbIntList &l) | |
int | get (const int index) const |
void | set (const int index, const int item) |
|
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.
|
|
This method returns the element at index. Does the same thing as SbList::operator[](). This method is only present for compatibility with the original Inventor API. |
|
This method sets the element at index to item. Does the same thing as SbList::operator[](). This method is only present for compatibility with the original Inventor API. |