| 5484 | { cvWriteString( *fs, name.size() ? name.c_str() : 0, value.c_str() ); } |
| 5485 | |
| 5486 | void writeScalar(FileStorage& fs, int value ) |
| 5487 | { cvWriteInt( *fs, 0, value ); } |
| 5488 | |
| 5489 | void writeScalar(FileStorage& fs, float value ) |
| 5490 | { cvWriteReal( *fs, 0, value ); } |
no test coverage detected