summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/CompressParser.h')
-rw-r--r--Swiften/Parser/CompressParser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Swiften/Parser/CompressParser.h b/Swiften/Parser/CompressParser.h
index 56b7e4b..54257b6 100644
--- a/Swiften/Parser/CompressParser.h
+++ b/Swiften/Parser/CompressParser.h
@@ -7,7 +7,7 @@
#ifndef SWIFTEN_CompressParser_H
#define SWIFTEN_CompressParser_H
-#include "Swiften/Base/String.h"
+#include <string>
#include "Swiften/Parser/GenericElementParser.h"
#include "Swiften/Elements/CompressRequest.h"
@@ -17,13 +17,13 @@ namespace Swift {
CompressParser();
private:
- void handleStartElement(const String& element, const String& ns, const AttributeMap& attributes);
- void handleEndElement(const String& element, const String& ns);
- void handleCharacterData(const String& data);
+ void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes);
+ void handleEndElement(const std::string& element, const std::string& ns);
+ void handleCharacterData(const std::string& data);
private:
int currentDepth_;
- String currentText_;
+ std::string currentText_;
bool inMethod_;
};
}