| 127 | |
| 128 | |
| 129 | void XMLConfiguration::load(Poco::XML::InputSource* pInputSource, unsigned long namePoolSize) |
| 130 | { |
| 131 | poco_check_ptr (pInputSource); |
| 132 | |
| 133 | Poco::XML::DOMParser parser(namePoolSize); |
| 134 | parser.setFeature(Poco::XML::XMLReader::FEATURE_NAMESPACES, false); |
| 135 | parser.setFeature(Poco::XML::DOMParser::FEATURE_FILTER_WHITESPACE, true); |
| 136 | Poco::XML::AutoPtr<Poco::XML::Document> pDoc = parser.parse(pInputSource); |
| 137 | load(pDoc); |
| 138 | } |
| 139 | |
| 140 | |
| 141 | void XMLConfiguration::load(Poco::XML::InputSource* pInputSource) |
nothing calls this directly
no test coverage detected