/* * Copyright (c) 2013 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include using namespace Swift; void AbstractJingleSessionListener::handleSessionAcceptReceived(const JingleContentID&, boost::shared_ptr, boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleSessionInfoReceived(boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleSessionTerminateReceived(boost::optional) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleTransportAcceptReceived(const JingleContentID&, boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleTransportInfoReceived(const JingleContentID&, boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleTransportRejectReceived(const JingleContentID&, boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleTransportReplaceReceived(const JingleContentID&, boost::shared_ptr) { SWIFT_LOG(warning) << "Unimplemented" << std::endl; } void AbstractJingleSessionListener::handleTransportInfoAcknowledged(const std::string&) { }