/* * Copyright (c) 2013 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include namespace Swift { class JingleContentID; class JingleTransportPayload; class JingleDescription; class SWIFTEN_API JingleSessionListener { public: virtual ~JingleSessionListener(); virtual void handleSessionAcceptReceived( const JingleContentID&, boost::shared_ptr, boost::shared_ptr) = 0; virtual void handleSessionInfoReceived(boost::shared_ptr) = 0; virtual void handleSessionTerminateReceived(boost::optional) = 0; virtual void handleTransportAcceptReceived( const JingleContentID&, boost::shared_ptr) = 0; virtual void handleTransportInfoReceived( const JingleContentID&, boost::shared_ptr) = 0; virtual void handleTransportRejectReceived( const JingleContentID&, boost::shared_ptr) = 0; virtual void handleTransportReplaceReceived( const JingleContentID&, boost::shared_ptr) = 0; virtual void handleTransportInfoAcknowledged(const std::string& id) = 0; }; }