summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-15 21:40:52 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-15 21:40:52 (GMT)
commit44bc44dee791570909b4b3d5f6f6f9f9ac07bba7 (patch)
tree54f59ca3b3ccc6de3a4225ff486794609a8cb1da /Documentation
parent385100e2bc6bda5d18c4fb833e1e757ef5d5c4a0 (diff)
downloadswift-44bc44dee791570909b4b3d5f6f6f9f9ac07bba7.zip
swift-44bc44dee791570909b4b3d5f6f6f9f9ac07bba7.tar.bz2
Make JID constructor with string implicit.
This avoids the need to explicitly contruct a JID where a string is used.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x.cpp3
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp2
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot2.cpp2
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp2
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp2
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp2
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp2
7 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x.cpp
index 68affc3..b4ccc21 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x.cpp
@@ -14,8 +14,7 @@ int main(int, char**) {
BoostNetworkFactories networkFactories(&eventLoop);
// Initialize the client with the JID and password
- Client client(
- JID("echobot@wonderland.lit"), "mypass", &networkFactories);
+ Client client("echobot@wonderland.lit", "mypass", &networkFactories);
// When the client is convnected, send out initial presence
client.onConnected.connect([&] {
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp
index de58f77..4736494 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp
@@ -12,7 +12,7 @@ int main(int, char**) {
SimpleEventLoop eventLoop;
BoostNetworkFactories networkFactories(&eventLoop);
- Client client(JID("echobot@wonderland.lit"), "mypass", &networkFactories);
+ Client client("echobot@wonderland.lit", "mypass", &networkFactories);
client.connect();
eventLoop.run();
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot2.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot2.cpp
index bf1c74a..f431245 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot2.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot2.cpp
@@ -21,7 +21,7 @@ int main(int, char**) {
SimpleEventLoop eventLoop;
BoostNetworkFactories networkFactories(&eventLoop);
- client = new Client(JID("echobot@wonderland.lit"), "mypass", &networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", &networkFactories);
client->onConnected.connect(&handleConnected);
client->onMessageReceived.connect(bind(&handleMessageReceived, _1));
client->connect();
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp
index d815d1f..cd95b91 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp
@@ -15,7 +15,7 @@ using namespace boost;
class EchoBot {
public:
EchoBot(NetworkFactories* networkFactories) {
- client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
client->onConnected.connect(bind(&EchoBot::handleConnected, this));
client->onMessageReceived.connect(
bind(&EchoBot::handleMessageReceived, this, _1));
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
index fc846d3..c2f555c 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
@@ -17,7 +17,7 @@ class EchoBot {
public:
EchoBot(NetworkFactories* networkFactories) {
//...
- client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
client->onConnected.connect(bind(&EchoBot::handleConnected, this));
client->onMessageReceived.connect(
bind(&EchoBot::handleMessageReceived, this, _1));
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp
index bc4cc3b..0b00330 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp
@@ -17,7 +17,7 @@ class EchoBot {
public:
EchoBot(NetworkFactories* networkFactories) {
//...
- client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
client->onConnected.connect(bind(&EchoBot::handleConnected, this));
client->onMessageReceived.connect(
bind(&EchoBot::handleMessageReceived, this, _1));
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp
index 6443438..d3587e9 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp
@@ -22,7 +22,7 @@ class EchoBot {
public:
EchoBot(NetworkFactories* networkFactories) {
//...
- client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
client->onConnected.connect(bind(&EchoBot::handleConnected, this));
client->onMessageReceived.connect(
bind(&EchoBot::handleMessageReceived, this, _1));