| 5296 | |
| 5297 | |
| 5298 | void FileStorage::writeObj( const string& name, const void* obj ) |
| 5299 | { |
| 5300 | if( !isOpened() ) |
| 5301 | return; |
| 5302 | cvWrite( fs, name.size() > 0 ? name.c_str() : 0, obj ); |
| 5303 | } |
| 5304 | |
| 5305 | |
| 5306 | FileNode FileStorage::operator[](const string& nodename) const |