summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/XMLParserClient.h')
m---------Swiften0
-rw-r--r--Swiften/Parser/XMLParserClient.h19
2 files changed, 0 insertions, 19 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Parser/XMLParserClient.h b/Swiften/Parser/XMLParserClient.h
deleted file mode 100644
index 7179ac6..0000000
--- a/Swiften/Parser/XMLParserClient.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef XMLPARSERCLIENT_H
-#define XMLPARSERCLIENT_H
-
-#include "Swiften/Parser/AttributeMap.h"
-
-namespace Swift {
- class String;
-
- class XMLParserClient {
- public:
- virtual ~XMLParserClient();
-
- virtual void handleStartElement(const String& element, const String& ns, const AttributeMap& attributes) = 0;
- virtual void handleEndElement(const String& element, const String& ns) = 0;
- virtual void handleCharacterData(const String& data) = 0;
- };
-}
-
-#endif