| 164 | } |
| 165 | |
| 166 | const char * cComponentManager::getComponentDescr(int i) // get name of component Type "i". abstract=1 = include abstract types (if abstract = 0 , then NULL will be returned if the type is abstract), or you may use the isAbstract flag, which is set by this function |
| 167 | { |
| 168 | if ( (i>=0)&&(i<nCompTs) ) { |
| 169 | return compTs[i].description; |
| 170 | } else { return NULL; } |
| 171 | } |
| 172 | |
| 173 | #ifdef SMILE_SUPPORT_PLUGINS |
| 174 |
no outgoing calls
no test coverage detected