/* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ /* * Copyright (c) 2012 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include namespace Swift { class ReplaceSerializer : public GenericPayloadSerializer { public: ReplaceSerializer() : GenericPayloadSerializer() {} virtual std::string serializePayload(boost::shared_ptr replace) const { return ""; } }; }