| 353 | } |
| 354 | |
| 355 | void Forest::saveDataFile( const char *path ) |
| 356 | { |
| 357 | if ( path && !String::isEmpty(path)) |
| 358 | mDataFileName = StringTable->insert( path ); |
| 359 | |
| 360 | if ( mData ) |
| 361 | mData->write( mDataFileName ); |
| 362 | } |
| 363 | |
| 364 | DefineConsoleMethod( Forest, saveDataFile, void, (const char * path), (""), "saveDataFile( [path] )" ) |
| 365 | { |
no test coverage detected