#include <Inventor/lists/SbStringList.h>
Inheritance diagram for SbStringList::
Public Methods | |
SbStringList (void) | |
SbStringList (const int sizehint) | |
SbStringList (const SbStringList &l) | |
SbString * | get (const int index) const |
void | set (const int index, SbString *const item) |
Note that upon using the equality and inequality operators, the strings themselves are not compared, only the pointer values.
|
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. |