| 363 | } |
| 364 | |
| 365 | void Forest::saveDataFile( const char *path ) |
| 366 | { |
| 367 | if ( path && !String::isEmpty(path)) |
| 368 | mDataFileName = StringTable->insert( path ); |
| 369 | |
| 370 | if ( mData ) |
| 371 | mData->write( mDataFileName ); |
| 372 | } |
| 373 | |
| 374 | DefineEngineMethod( Forest, saveDataFile, void, (const char * path), (""), "saveDataFile( [path] )" ) |
| 375 | { |
no test coverage detected