| 116 | //----------------------------------------------------------------------------- |
| 117 | |
| 118 | String EngineModuleManager::_moduleListToString( Vector< Module* >& moduleList ) |
| 119 | { |
| 120 | StringBuilder str; |
| 121 | |
| 122 | const U32 numModules = moduleList.size(); |
| 123 | bool isFirst = true; |
| 124 | for( U32 i = 0; i < numModules; ++ i ) |
| 125 | { |
| 126 | if( !isFirst ) |
| 127 | str.append( " -> " ); |
| 128 | |
| 129 | str.append( moduleList[ i ]->getName() ); |
| 130 | |
| 131 | isFirst = false; |
| 132 | } |
| 133 | |
| 134 | return str.end(); |
| 135 | } |
| 136 | |
| 137 | //----------------------------------------------------------------------------- |
| 138 | |