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