diff options
Diffstat (limited to 'Swiften/Parser/XMLParserClient.cpp')
| -rw-r--r-- | Swiften/Parser/XMLParserClient.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Swiften/Parser/XMLParserClient.cpp b/Swiften/Parser/XMLParserClient.cpp index 40be4e8..847e1f3 100644 --- a/Swiften/Parser/XMLParserClient.cpp +++ b/Swiften/Parser/XMLParserClient.cpp @@ -5,14 +5,20 @@ */ #include <Swiften/Parser/XMLParserClient.h> namespace Swift { XMLParserClient::~XMLParserClient() { } +void XMLParserClient::handleStartElement(const std::string&, const std::string&, const AttributeMap&) { +} + +void XMLParserClient::handleStartElementPrefix(const std::string&, const std::string&, const std::string&, const std::string&, const std::string&, const AttributeMap&) { +} + void XMLParserClient::handleNamespaceDeclaration(const std::string&, const std::string&) { } } |
Swift