diff options
Diffstat (limited to 'Swiften/VCards/GetVCardRequest.h')
-rw-r--r-- | Swiften/VCards/GetVCardRequest.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Swiften/VCards/GetVCardRequest.h b/Swiften/VCards/GetVCardRequest.h new file mode 100644 index 0000000..2c40cd1 --- /dev/null +++ b/Swiften/VCards/GetVCardRequest.h @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "Swiften/Queries/GenericRequest.h" +#include "Swiften/Elements/VCard.h" +#include "Swiften/Base/Shared.h" + +namespace Swift { + class GetVCardRequest : public GenericRequest<VCard>, public Shared<GetVCardRequest> { + public: + 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) { + } + }; +} |