#include <Inventor/lists/SbStringList.h>

Public Member Functions | |
| 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.
| SbStringList::SbStringList | ( | void | ) | [inline] |
Default constructor.
| SbStringList::SbStringList | ( | const int | sizehint | ) | [inline] |
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
| SbStringList::SbStringList | ( | const SbStringList & | l | ) | [inline] |
| SbString * SbStringList::get | ( | const int | index | ) | const [inline] |
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.
| void SbStringList::set | ( | const int | index, | |
| SbString *const | item | |||
| ) | [inline] |
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.
1.5.3