diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-12-05 13:36:00 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-12-05 13:36:00 (GMT) |
commit | 5c30503d671d54c3e2950be7b4f17a1ba5843475 (patch) | |
tree | 5bb9dd3856e9c9e4b15dfe1ab7cdb0bbb1c8b8e3 /Documentation | |
parent | 33cd40af8a271a8994b4c2fc71395e338779d4dc (diff) | |
download | swift-5c30503d671d54c3e2950be7b4f17a1ba5843475.zip swift-5c30503d671d54c3e2950be7b4f17a1ba5843475.tar.bz2 |
Import boost::make_shared.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp index 4c96f6b..7bbeaaf 100644 --- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp +++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot6.cpp @@ -7,6 +7,7 @@ //... #include <iostream> #include <boost/bind.hpp> +#include <boost/smart_ptr/make_shared.hpp> #include <Swiften/Swiften.h> @@ -88,7 +89,7 @@ class EchoBot { message->setFrom(JID()); //... if (!message->getPayload<EchoPayload>()) { - boost::shared_ptr<EchoPayload> echoPayload(new EchoPayload()); + boost::shared_ptr<EchoPayload> echoPayload = boost::make_shared<EchoPayload>(); echoPayload->setMessage("This is an echoed message"); message->addPayload(echoPayload); client->sendMessage(message); |