Abstract class that represents a set of ordered strings. Strings can be added to a set and can be retrieved by a numeric index (index values for strings are 1-based). To create a string set, use CCFXRequest::CreateStringSet.
| virtual int AddString( LPCSTR lpszString ) | 
 CCFXStringSet::AddString adds a string to the end of a list.  | 
  
| virtual int GetCount() | 
 CCFXStringSet::GetCount gets the number of strings contained in a list.  | 
  
| virtual LPCSTR GetString( int iIndex ) | 
 CCFXStringSet::GetString gets the string located at the passed index.  | 
  
| virtual int GetIndexForString( LPCSTR lpszString ) | 
 CCFXStringSet::GetIndexForString gets the index for the passed string.  |