/* * Copyright (c) 2011 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 namespace Swift { class JingleFileTransferDescription : public JingleDescription { public: typedef boost::shared_ptr ref; void setOffer(const StreamInitiationFileInfo& offer) { this->offer = offer; } const boost::optional& getOffer() const { return offer; } private: boost::optional offer; }; }