| 131 | } |
| 132 | |
| 133 | ForestItemData* ForestItemData::find( const char *name ) |
| 134 | { |
| 135 | ForestItemData *result = dynamic_cast<ForestItemData*>( getSet()->findObjectByInternalName( name ) ); |
| 136 | if ( !result ) |
| 137 | Sim::findObject( name, result ); |
| 138 | |
| 139 | return result; |
| 140 | } |
| 141 | |
| 142 | void ForestItemData::onNameChange( const char *name ) |
| 143 | { |
no test coverage detected