| 5519 | |
| 5520 | |
| 5521 | WriteStructContext::WriteStructContext(FileStorage& _fs, const string& name, |
| 5522 | int flags, const string& typeName) : fs(&_fs) |
| 5523 | { |
| 5524 | cvStartWriteStruct(**fs, !name.empty() ? name.c_str() : 0, flags, |
| 5525 | !typeName.empty() ? typeName.c_str() : 0); |
| 5526 | } |
| 5527 | |
| 5528 | WriteStructContext::~WriteStructContext() { cvEndWriteStruct(**fs); } |
| 5529 |
nothing calls this directly
no test coverage detected