diff options
Diffstat (limited to 'Swiften/VCards/GetVCardRequest.h')
-rw-r--r-- | Swiften/VCards/GetVCardRequest.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/VCards/GetVCardRequest.h b/Swiften/VCards/GetVCardRequest.h index f30fd05..5d6fc17 100644 --- a/Swiften/VCards/GetVCardRequest.h +++ b/Swiften/VCards/GetVCardRequest.h @@ -11,16 +11,16 @@ #include <Swiften/Queries/GenericRequest.h> namespace Swift { - class SWIFTEN_API GetVCardRequest : public GenericRequest<VCard> { - public: - typedef boost::shared_ptr<GetVCardRequest> ref; + class SWIFTEN_API GetVCardRequest : public GenericRequest<VCard> { + public: + typedef boost::shared_ptr<GetVCardRequest> ref; - static ref create(const JID& jid, IQRouter* router) { - return ref(new GetVCardRequest(jid, router)); - } + static ref create(const JID& jid, IQRouter* router) { + return ref(new GetVCardRequest(jid, router)); + } - private: - GetVCardRequest(const JID& jid, IQRouter* router) : GenericRequest<VCard>(IQ::Get, jid, boost::shared_ptr<Payload>(new VCard()), router) { - } - }; + private: + GetVCardRequest(const JID& jid, IQRouter* router) : GenericRequest<VCard>(IQ::Get, jid, boost::shared_ptr<Payload>(new VCard()), router) { + } + }; } |