MCPcopy Create free account
hub / github.com/audacity/audacity / StringToList

Method StringToList

libraries/lib-import-export/Import.cpp:291–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291void 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
299void Importer::ReadImportItems()
300{

Callers 1

OnRuleTableEditMethod · 0.80

Calls 2

SetStringMethod · 0.80
push_backMethod · 0.45

Tested by

no test coverage detected