| 30 | FeatureXMLFile::~FeatureXMLFile() = default; |
| 31 | |
| 32 | Size FeatureXMLFile::loadSize(const String& filename) |
| 33 | { |
| 34 | FeatureMap dummy; |
| 35 | Internal::FeatureXMLHandler handler(dummy, filename); |
| 36 | handler.setOptions(options_); |
| 37 | handler.setSizeOnly(true); |
| 38 | handler.setLogType(getLogType()); |
| 39 | parse_(filename, &handler); |
| 40 | |
| 41 | return handler.getSize(); |
| 42 | } |
| 43 | |
| 44 | void FeatureXMLFile::load(const String& filename, FeatureMap& feature_map) |
| 45 | { |
nothing calls this directly
no test coverage detected