Private Member Functions | |
void | Paths (tArray< tString > &paths) const |
Definition at line 548 of file tDirectories.cpp.
Implements tPath.
Definition at line 552 of file tDirectories.cpp.
References tString::Len(), pos, tArray< T, MALLOC >::SetLen(), st_DataDir, and st_UserDataDir.
00553 { 00554 paths.SetLen( 0 ); 00555 int pos = 0; 00556 00557 paths[ pos++ ] = st_DataDir; 00558 00559 if ( st_UserDataDir.Len() > 1 ) 00560 { 00561 paths[ pos++ ] = st_UserDataDir; 00562 } 00563 }