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/LinkLocal/DNSSD/DNSSDServiceID.h
parentcad974b45c0fb9355e68d9728e42c9ae3dbcebc7 (diff)
downloadswift-cb05f5a908e20006c954ce38755c2e422ecc2388.zip
swift-cb05f5a908e20006c954ce38755c2e422ecc2388.tar.bz2
Removed Swift::String.
Diffstat (limited to 'Swiften/LinkLocal/DNSSD/DNSSDServiceID.h')
-rw-r--r--Swiften/LinkLocal/DNSSD/DNSSDServiceID.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/LinkLocal/DNSSD/DNSSDServiceID.h b/Swiften/LinkLocal/DNSSD/DNSSDServiceID.h
index 1a720a0..9ce0781 100644
--- a/Swiften/LinkLocal/DNSSD/DNSSDServiceID.h
+++ b/Swiften/LinkLocal/DNSSD/DNSSDServiceID.h
@@ -6,7 +6,7 @@
#pragma once
-#include "Swiften/Base/String.h"
+#include <string>
namespace Swift {
class DNSSDServiceID {
@@ -14,9 +14,9 @@ namespace Swift {
static const char* PresenceServiceType;
DNSSDServiceID(
- const String& name,
- const String& domain,
- const String& type = PresenceServiceType,
+ const std::string& name,
+ const std::string& domain,
+ const std::string& type = PresenceServiceType,
int networkInterface = -1) :
name(name),
domain(domain),
@@ -47,15 +47,15 @@ namespace Swift {
}
}
- const String& getName() const {
+ const std::string& getName() const {
return name;
}
- const String& getDomain() const {
+ const std::string& getDomain() const {
return domain;
}
- const String& getType() const {
+ const std::string& getType() const {
return type;
}
@@ -64,9 +64,9 @@ namespace Swift {
}
private:
- String name;
- String domain;
- String type;
+ std::string name;
+ std::string domain;
+ std::string type;
int networkInterface;
};
}