The sbstringlist class is a container for arrays of sbstring pointers. note that upon using the equality and inequality operators, the strings themselves are not compared, only the pointer values.
#include <Inventor/lists/SbStringList.h>
Inherits SbPList.
SbStringList (void)
SbStringList (const int sizehint)
void append (SbString *string)
int find (SbString *string) const
void insert (SbString *string, int insertbefore)
SbString *& operator[] (const int idx) const
const SbString ** getArrayPtr (void) const
The SbStringList class is a container for arrays of SbString pointers.
Note that upon using the equality and inequality operators, the strings themselves are not compared, only the pointer values.
This class do not allocate or deallocate strings. It's the callers responsibility to allocate/deallocate the SbString instances.
See also:
SbPList
Default constructor.
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
See also:
SPbList::SbList(const int sizehint)
Overridden from parent to accept an SbString argument.
Overridden from parent to accept an SbString argument.
Overridden from parent to return an SbString pointer.
Overridden from parent to return an SbString pointer array.
Generated automatically by Doxygen for Coin from the source code.