| 68 | |
| 69 | |
| 70 | void NamespaceSupport::getDeclaredPrefixes(PrefixSet& prefixes) const |
| 71 | { |
| 72 | prefixes.clear(); |
| 73 | const Context& ctx = _contexts.back(); |
| 74 | for (const auto& p: ctx) |
| 75 | prefixes.insert(p.first); |
| 76 | } |
| 77 | |
| 78 | |
| 79 | const XMLString& NamespaceSupport::getPrefix(const XMLString& namespaceURI) const |
no test coverage detected