| 215 | // E57XmlFileInputSource |
| 216 | |
| 217 | E57XmlFileInputSource::E57XmlFileInputSource( CheckedFile *cf, uint64_t logicalStart, |
| 218 | uint64_t logicalLength ) : |
| 219 | InputSource( "E57File", |
| 220 | XMLPlatformUtils::fgMemoryManager ), //??? what if want to use our own memory |
| 221 | // manager?, what bufid is good? |
| 222 | cf_( cf ), logicalStart_( logicalStart ), logicalLength_( logicalLength ) |
| 223 | { |
| 224 | } |
| 225 | |
| 226 | BinInputStream *E57XmlFileInputSource::makeStream() const |
| 227 | { |
nothing calls this directly
no outgoing calls
no test coverage detected