/* * Copyright (c) 2014 Kevin Smith and Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include namespace Swift { class PayloadSerializerCollection; class SWIFTEN_API ResultSetSerializer : public GenericPayloadSerializer { public: ResultSetSerializer(); virtual ~ResultSetSerializer(); virtual std::string serializePayload(boost::shared_ptr) const SWIFTEN_OVERRIDE; }; }