diff options
Diffstat (limited to 'Swiften/VCards/SetVCardRequest.h')
-rw-r--r-- | Swiften/VCards/SetVCardRequest.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Swiften/VCards/SetVCardRequest.h b/Swiften/VCards/SetVCardRequest.h index 8dfda5d..15cc78b 100644 --- a/Swiften/VCards/SetVCardRequest.h +++ b/Swiften/VCards/SetVCardRequest.h @@ -1,26 +1,26 @@ /* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2010-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #pragma once -#include <Swiften/Queries/GenericRequest.h> +#include <Swiften/Base/API.h> #include <Swiften/Elements/VCard.h> - +#include <Swiften/Queries/GenericRequest.h> namespace Swift { - class SetVCardRequest : public GenericRequest<VCard> { - public: - typedef boost::shared_ptr<SetVCardRequest> ref; + class SWIFTEN_API SetVCardRequest : public GenericRequest<VCard> { + public: + typedef std::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) { + } + }; } |