| 289 | } |
| 290 | |
| 291 | void Importer::StringToList(wxString &str, wxString &delims, wxArrayString &list, wxStringTokenizerMode mod) |
| 292 | { |
| 293 | wxStringTokenizer toker; |
| 294 | |
| 295 | for (toker.SetString(str, delims, mod); |
| 296 | toker.HasMoreTokens(); list.push_back(toker.GetNextToken())); |
| 297 | } |
| 298 | |
| 299 | void Importer::ReadImportItems() |
| 300 | { |
no test coverage detected