/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include namespace Swift { class PayloadSerializerCollection; class XMLElement; class JingleRTPDescriptionSerializer : public GenericPayloadSerializer { public: JingleRTPDescriptionSerializer(); virtual std::string serializePayload(boost::shared_ptr) const; private: std::string mediaTypeToString(JingleRTPDescription::MediaType mediaType) const; }; }