/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #include #include #include #include #include namespace Swift { VCardUpdateSerializer::VCardUpdateSerializer() : GenericPayloadSerializer() { } std::string VCardUpdateSerializer::serializePayload(boost::shared_ptr vcardUpdate) const { XMLElement updateElement("x", "vcard-temp:x:update"); boost::shared_ptr photoElement(new XMLElement("photo")); photoElement->addNode(boost::make_shared(vcardUpdate->getPhotoHash())); updateElement.addNode(photoElement); return updateElement.serialize(); } }