diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:44:36 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:45:36 (GMT) |
commit | f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3 (patch) | |
tree | 484a1755ccb69421de3ed9b7b9c731870f2de56a /Swiften/Disco | |
parent | bd80c3b9054d91b3cbc309400f4db195c708115d (diff) | |
download | swift-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.zip swift-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.tar.bz2 |
Remove the use of Shared<>.
Diffstat (limited to 'Swiften/Disco')
-rw-r--r-- | Swiften/Disco/CapsFileStorage.cpp | 2 | ||||
-rw-r--r-- | Swiften/Disco/GetDiscoInfoRequest.h | 4 | ||||
-rw-r--r-- | Swiften/Disco/GetDiscoItemsRequest.h | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/Swiften/Disco/CapsFileStorage.cpp b/Swiften/Disco/CapsFileStorage.cpp index c5326a7..107cf28 100644 --- a/Swiften/Disco/CapsFileStorage.cpp +++ b/Swiften/Disco/CapsFileStorage.cpp @@ -30,7 +30,7 @@ DiscoInfo::ref CapsFileStorage::getDiscoInfo(const String& hash) const { DiscoInfoParser parser; PayloadParserTester tester(&parser); tester.parse(String(data.getData(), data.getSize())); - return DiscoInfo::cast(parser.getPayload()); + return boost::dynamic_pointer_cast<DiscoInfo>(parser.getPayload()); } else { return DiscoInfo::ref(); diff --git a/Swiften/Disco/GetDiscoInfoRequest.h b/Swiften/Disco/GetDiscoInfoRequest.h index d1ed279..2298b5c 100644 --- a/Swiften/Disco/GetDiscoInfoRequest.h +++ b/Swiften/Disco/GetDiscoInfoRequest.h @@ -10,8 +10,10 @@ #include "Swiften/Elements/DiscoInfo.h" namespace Swift { - class GetDiscoInfoRequest : public GenericRequest<DiscoInfo>, public Shared<GetDiscoInfoRequest> { + class GetDiscoInfoRequest : public GenericRequest<DiscoInfo> { public: + typedef boost::shared_ptr<GetDiscoInfoRequest> ref; + static ref create(const JID& jid, IQRouter* router) { return ref(new GetDiscoInfoRequest(jid, router)); } diff --git a/Swiften/Disco/GetDiscoItemsRequest.h b/Swiften/Disco/GetDiscoItemsRequest.h index ed565ac..0a94402 100644 --- a/Swiften/Disco/GetDiscoItemsRequest.h +++ b/Swiften/Disco/GetDiscoItemsRequest.h @@ -10,8 +10,10 @@ #include "Swiften/Elements/DiscoItems.h" namespace Swift { - class GetDiscoItemsRequest : public GenericRequest<DiscoItems>, public Shared<GetDiscoItemsRequest> { + class GetDiscoItemsRequest : public GenericRequest<DiscoItems> { public: + typedef boost::shared_ptr<GetDiscoItemsRequest> ref; + static ref create(const JID& jid, IQRouter* router) { return ref(new GetDiscoItemsRequest(jid, router)); } |