Coin
4.0.3
Coin3D core library
|
The SbStringList class is a container for pointers to SbString objects. More...
#include <Inventor/lists/SbStringList.h>
Additional Inherited Members | |
Protected Member Functions inherited from SbPList | |
void | expand (const int size) |
int | getArraySize (void) const |
The SbStringList class is a container for pointers to SbString objects.
Note that upon using the equality and inequality operators, the strings themselves are not compared, only the pointer values.
This class does not allocate or deallocate strings. It's the callers responsibility to allocate/deallocate the SbString instances.
|
inline |
Default constructor.
|
inline |
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
Append item to the end of the list.
Automatically allocates more items internally if needed.
Overloaded from parent to accept an SbString pointer argument.
|
inline |
Return index of first occurrence of item in the list, or -1 if item is not present.
Overloaded from parent to accept an SbString pointer argument.
Returns pointer to a non-modifiable array of the lists elements. start specifies an index into the array.
The caller is not responsible for freeing up the array, as it is just a pointer into the internal array used by the list.
Overloaded from parent to return an SbString pointer array.
Insert item at index insertbefore.
insertbefore should not be larger than the current number of items in the list.
Overloaded from parent to accept an SbString pointer argument.
Returns element at index.
Will 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 NULL
.
Overloaded from parent to return an SbString pointer.