summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/CompressParser.cpp')
m---------Swiften0
-rw-r--r--Swiften/Parser/CompressParser.cpp28
2 files changed, 0 insertions, 28 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Parser/CompressParser.cpp b/Swiften/Parser/CompressParser.cpp
deleted file mode 100644
index 7ca752d..0000000
--- a/Swiften/Parser/CompressParser.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "Swiften/Parser/CompressParser.h"
-
-namespace Swift {
-
-CompressParser::CompressParser() : GenericElementParser<CompressRequest>(), currentDepth_(0), inMethod_(false) {
-}
-
-void CompressParser::handleStartElement(const String& element, const String&, const AttributeMap&) {
- if (currentDepth_ == 1 && element == "method") {
- inMethod_ = true;
- currentText_ = "";
- }
- ++currentDepth_;
-}
-
-void CompressParser::handleEndElement(const String&, const String&) {
- --currentDepth_;
- if (currentDepth_ == 1 && inMethod_) {
- getElementGeneric()->setMethod(currentText_);
- inMethod_ = false;
- }
-}
-
-void CompressParser::handleCharacterData(const String& data) {
- currentText_ += data;
-}
-
-}