| 351 | } |
| 352 | |
| 353 | std::vector<shared_ptr<XdmfItem> > |
| 354 | XdmfCoreReader::readItems(const std::string & filePath) const |
| 355 | { |
| 356 | mImpl->openFile(filePath); |
| 357 | const xmlNodePtr currNode = xmlDocGetRootElement(mImpl->mDocument); |
| 358 | const std::vector<shared_ptr<XdmfItem> > toReturn = |
| 359 | mImpl->read(currNode->children); |
| 360 | mImpl->closeFile(); |
| 361 | return toReturn; |
| 362 | } |
| 363 | |
| 364 | shared_ptr<XdmfItem> |
| 365 | XdmfCoreReader::read(const std::string & filePath) const |
nothing calls this directly
no test coverage detected