summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/IQParser.cpp')
m---------Swiften0
-rw-r--r--Swiften/Parser/IQParser.cpp33
2 files changed, 0 insertions, 33 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Parser/IQParser.cpp b/Swiften/Parser/IQParser.cpp
deleted file mode 100644
index 2b4b364..0000000
--- a/Swiften/Parser/IQParser.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <iostream>
-
-#include "Swiften/Parser/IQParser.h"
-
-namespace Swift {
-
-IQParser::IQParser(PayloadParserFactoryCollection* factories) :
- GenericStanzaParser<IQ>(factories) {
-}
-
-void IQParser::handleStanzaAttributes(const AttributeMap& attributes) {
- AttributeMap::const_iterator type = attributes.find("type");
- if (type != attributes.end()) {
- if (type->second == "set") {
- getStanzaGeneric()->setType(IQ::Set);
- }
- else if (type->second == "get") {
- getStanzaGeneric()->setType(IQ::Get);
- }
- else if (type->second == "result") {
- getStanzaGeneric()->setType(IQ::Result);
- }
- else if (type->second == "error") {
- getStanzaGeneric()->setType(IQ::Error);
- }
- else {
- std::cerr << "Unknown IQ type: " << type->second << std::endl;
- getStanzaGeneric()->setType(IQ::Get);
- }
- }
-}
-
-}