24#ifndef SB_STRING_LIST_H
25#define SB_STRING_LIST_H
List of generic (void *) pointers.
Class for smart character strings.
Maintains a list of pointers to SbString instances.
int find(SbString *string)
Returns index of given SbString in list, or -1 if not found (pointer check)
SbString *& operator[](int i) const
Returns pointer with given index.
void insert(SbString *string, int addBefore)
Inserts given SbString in list before SbString with given index.
static SbStringList split(const SbString &str, const SbString &separator)
This function splits a string according to a separator.
void append(const char *)
Adds given string to the end of the list.
int findString(const SbString &string) const
Returns index of given SbString in list, or -1 if not found (string check)
void append(SbString *string)
Adds given SbString pointer to end of list.