summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-14 18:57:18 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-14 21:36:32 (GMT)
commitcb05f5a908e20006c954ce38755c2e422ecc2388 (patch)
treea793551a5fe279a57d4330119560e8542f745484 /Swiften/Elements/StreamFeatures.h
parentcad974b45c0fb9355e68d9728e42c9ae3dbcebc7 (diff)
downloadswift-cb05f5a908e20006c954ce38755c2e422ecc2388.zip
swift-cb05f5a908e20006c954ce38755c2e422ecc2388.tar.bz2
Removed Swift::String.
Diffstat (limited to 'Swiften/Elements/StreamFeatures.h')
-rw-r--r--Swiften/Elements/StreamFeatures.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/Swiften/Elements/StreamFeatures.h b/Swiften/Elements/StreamFeatures.h
index 32446ce..fbc0bb8 100644
--- a/Swiften/Elements/StreamFeatures.h
+++ b/Swiften/Elements/StreamFeatures.h
@@ -9,7 +9,7 @@
#include <vector>
#include <algorithm>
-#include "Swiften/Base/String.h"
+#include <string>
#include "Swiften/Elements/Element.h"
namespace Swift {
@@ -43,27 +43,27 @@ namespace Swift {
return hasResourceBind_;
}
- const std::vector<String>& getCompressionMethods() const {
+ const std::vector<std::string>& getCompressionMethods() const {
return compressionMethods_;
}
- void addCompressionMethod(const String& mechanism) {
+ void addCompressionMethod(const std::string& mechanism) {
compressionMethods_.push_back(mechanism);
}
- bool hasCompressionMethod(const String& mechanism) const {
+ bool hasCompressionMethod(const std::string& mechanism) const {
return std::find(compressionMethods_.begin(), compressionMethods_.end(), mechanism) != compressionMethods_.end();
}
- const std::vector<String>& getAuthenticationMechanisms() const {
+ const std::vector<std::string>& getAuthenticationMechanisms() const {
return authenticationMechanisms_;
}
- void addAuthenticationMechanism(const String& mechanism) {
+ void addAuthenticationMechanism(const std::string& mechanism) {
authenticationMechanisms_.push_back(mechanism);
}
- bool hasAuthenticationMechanism(const String& mechanism) const {
+ bool hasAuthenticationMechanism(const std::string& mechanism) const {
return std::find(authenticationMechanisms_.begin(), authenticationMechanisms_.end(), mechanism) != authenticationMechanisms_.end();
}
@@ -81,8 +81,8 @@ namespace Swift {
private:
bool hasStartTLS_;
- std::vector<String> compressionMethods_;
- std::vector<String> authenticationMechanisms_;
+ std::vector<std::string> compressionMethods_;
+ std::vector<std::string> authenticationMechanisms_;
bool hasResourceBind_;
bool hasSession_;
bool hasStreamManagement_;