summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/AuthRequestParser.h')
m---------Swiften0
-rw-r--r--Swiften/Parser/AuthRequestParser.h23
2 files changed, 0 insertions, 23 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Parser/AuthRequestParser.h b/Swiften/Parser/AuthRequestParser.h
deleted file mode 100644
index 8916922..0000000
--- a/Swiften/Parser/AuthRequestParser.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef SWIFTEN_AuthRequestParser_H
-#define SWIFTEN_AuthRequestParser_H
-
-#include "Swiften/Parser/GenericElementParser.h"
-#include "Swiften/Elements/AuthRequest.h"
-#include "Swiften/Base/String.h"
-
-namespace Swift {
- class AuthRequestParser : public GenericElementParser<AuthRequest> {
- public:
- AuthRequestParser();
-
- virtual void handleStartElement(const String&, const String& ns, const AttributeMap&);
- virtual void handleEndElement(const String&, const String& ns);
- virtual void handleCharacterData(const String&);
-
- private:
- String text_;
- int depth_;
- };
-}
-
-#endif