/* * Copyright (c) 2013 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include #include namespace Swift { class IdleSerializer : public GenericPayloadSerializer { public: IdleSerializer() : GenericPayloadSerializer() {} virtual std::string serializePayload(boost::shared_ptr idle) const { return ""; } }; }