summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/PlatformXMLParserFactory.cpp')
m---------Swiften0
-rw-r--r--Swiften/Parser/PlatformXMLParserFactory.cpp25
2 files changed, 0 insertions, 25 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Parser/PlatformXMLParserFactory.cpp b/Swiften/Parser/PlatformXMLParserFactory.cpp
deleted file mode 100644
index 0624a2d..0000000
--- a/Swiften/Parser/PlatformXMLParserFactory.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "Swiften/Parser/PlatformXMLParserFactory.h"
-
-#include <cassert>
-
-#ifdef HAVE_LIBXML
-#include "Swiften/Parser/LibXMLParser.h"
-#else
-#include "Swiften/Parser/ExpatParser.h"
-#endif
-
-
-namespace Swift {
-
-PlatformXMLParserFactory::PlatformXMLParserFactory() {
-}
-
-XMLParser* PlatformXMLParserFactory::createXMLParser(XMLParserClient* client) {
-#ifdef HAVE_LIBXML
- return new LibXMLParser(client);
-#else
- return new ExpatParser(client);
-#endif
-}
-
-}