summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/ElementParser.h')
-rw-r--r--Swiften/Parser/ElementParser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Parser/ElementParser.h b/Swiften/Parser/ElementParser.h
index 3224a91..60f2395 100644
--- a/Swiften/Parser/ElementParser.h
+++ b/Swiften/Parser/ElementParser.h
@@ -9,7 +9,7 @@
#include <boost/shared_ptr.hpp>
-#include "Swiften/Base/String.h"
+#include <string>
#include "Swiften/Elements/Element.h"
#include "Swiften/Parser/AttributeMap.h"
@@ -18,9 +18,9 @@ namespace Swift {
public:
virtual ~ElementParser();
- 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;
+ virtual void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) = 0;
+ virtual void handleEndElement(const std::string& element, const std::string& ns) = 0;
+ virtual void handleCharacterData(const std::string& data) = 0;
virtual boost::shared_ptr<Element> getElement() const = 0;
};