| 3398 | |
| 3399 | |
| 3400 | CV_IMPL void |
| 3401 | cvReadRawData( const CvFileStorage* fs, const CvFileNode* src, |
| 3402 | void* data, const char* dt ) |
| 3403 | { |
| 3404 | CvSeqReader reader; |
| 3405 | |
| 3406 | if( !src || !data ) |
| 3407 | CV_Error( CV_StsNullPtr, "Null pointers to source file node or destination array" ); |
| 3408 | |
| 3409 | cvStartReadRawData( fs, src, &reader ); |
| 3410 | cvReadRawDataSlice( fs, &reader, CV_NODE_IS_SEQ(src->tag) ? |
| 3411 | src->data.seq->total : 1, data, dt ); |
| 3412 | } |
| 3413 | |
| 3414 | |
| 3415 | static void |
no test coverage detected