diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-02 21:11:47 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-02 21:11:47 (GMT) |
commit | e9939e9958b0dae2dc6d2211b52dca5058869418 (patch) | |
tree | 57ab81b84f28f00531a29a5c2d1a0baba172dd1f /Documentation/SwiftenDevelopersGuide/Examples/EchoBot | |
parent | b66315290cf80b090f1b66eef021c811d1ea0b74 (diff) | |
download | swift-e9939e9958b0dae2dc6d2211b52dca5058869418.zip swift-e9939e9958b0dae2dc6d2211b52dca5058869418.tar.bz2 |
Removing unused parameter from Client constructor.
Diffstat (limited to 'Documentation/SwiftenDevelopersGuide/Examples/EchoBot')
7 files changed, 15 insertions, 14 deletions
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot1.cpp index f5268ef..de58f77 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(&eventLoop, &networkFactories, JID("echobot@wonderland.lit"), "mypass"); + Client client(JID("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 99efdf9..bf1c74a 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(&eventLoop, &networkFactories, JID("echobot@wonderland.lit"), "mypass"); + client = new Client(JID("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 3404c2a..d815d1f 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot3.cpp @@ -14,8 +14,8 @@ using namespace boost; class EchoBot { public: - EchoBot(EventLoop* eventLoop, NetworkFactories* networkFactories) { - client = new Client(eventLoop, networkFactories, JID("echobot@wonderland.lit"), "mypass"); + EchoBot(NetworkFactories* networkFactories) { + client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories); client->onConnected.connect(bind(&EchoBot::handleConnected, this)); client->onMessageReceived.connect( bind(&EchoBot::handleMessageReceived, this, _1)); @@ -49,7 +49,7 @@ int main(int, char**) { SimpleEventLoop eventLoop; BoostNetworkFactories networkFactories(&eventLoop); - EchoBot bot(&eventLoop, &networkFactories); + EchoBot bot(&networkFactories); eventLoop.run(); return 0; diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp index 0309768..fc846d3 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp @@ -15,9 +15,9 @@ using namespace boost; //... class EchoBot { public: - EchoBot(EventLoop* eventLoop, NetworkFactories* networkFactories) { + EchoBot(NetworkFactories* networkFactories) { //... - client = new Client(eventLoop, networkFactories, JID("echobot@wonderland.lit"), "mypass"); + client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories); client->onConnected.connect(bind(&EchoBot::handleConnected, this)); client->onMessageReceived.connect( bind(&EchoBot::handleMessageReceived, this, _1)); @@ -84,7 +84,7 @@ int main(int, char**) { SimpleEventLoop eventLoop; BoostNetworkFactories networkFactories(&eventLoop); - EchoBot bot(&eventLoop, &networkFactories); + EchoBot bot(&networkFactories); eventLoop.run(); return 0; diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp index 4c09e1b..bc4cc3b 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot5.cpp @@ -15,9 +15,9 @@ using namespace boost; //... class EchoBot { public: - EchoBot(EventLoop* eventLoop, NetworkFactories* networkFactories) { + EchoBot(NetworkFactories* networkFactories) { //... - client = new Client(eventLoop, networkFactories, JID("echobot@wonderland.lit"), "mypass"); + client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories); client->onConnected.connect(bind(&EchoBot::handleConnected, this)); client->onMessageReceived.connect( bind(&EchoBot::handleMessageReceived, this, _1)); @@ -92,7 +92,7 @@ int main(int, char**) { SimpleEventLoop eventLoop; BoostNetworkFactories networkFactories(&eventLoop); - EchoBot bot(&eventLoop, &networkFactories); + EchoBot bot(&networkFactories); eventLoop.run(); return 0; diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp index 7bbeaaf..6443438 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp @@ -20,9 +20,9 @@ using namespace boost; class EchoBot { public: - EchoBot(EventLoop* eventLoop, NetworkFactories* networkFactories) { + EchoBot(NetworkFactories* networkFactories) { //... - client = new Client(eventLoop, networkFactories, JID("echobot@wonderland.lit"), "mypass"); + client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories); client->onConnected.connect(bind(&EchoBot::handleConnected, this)); client->onMessageReceived.connect( bind(&EchoBot::handleMessageReceived, this, _1)); @@ -113,7 +113,7 @@ int main(int, char**) { SimpleEventLoop eventLoop; BoostNetworkFactories networkFactories(&eventLoop); - EchoBot bot(&eventLoop, &networkFactories); + EchoBot bot(&networkFactories); eventLoop.run(); return 0; diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript index 1e410cf..ca9ce62 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript @@ -6,4 +6,5 @@ example_env.MergeFlags(example_env["SWIFTEN_DEP_FLAGS"]) for i in range(1,7) : example_env.Program("EchoBot" + str(i), ["EchoBot" + str(i) + ".cpp"]) +#example_env.Program("EchoBot0x", "EchoBot0x.cpp") example_env.Program("EchoComponent", "EchoComponent.cpp") |