diff options
Diffstat (limited to 'Documentation/SwiftenDevelopersGuide/Examples')
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));  | 
 Swift