[#2006] Add hold/unhold conference dbus messages

This commit is contained in:
Alexandre Savard
2009-08-31 10:49:29 -04:00
parent 5ea8bf7974
commit 8dbd587395
6 changed files with 49 additions and 0 deletions

View File

@ -138,6 +138,20 @@ CallManager::detachParticipant (const std::string& callID)
Manager::instance().detachParticipant(callID);
}
void
CallManager::holdConference (const std::string& confID)
{
_debug ("CallManager::holdConference received %s\n", confID.c_str());
Manager::instance().holdConference(confID);
}
void
CallManager::unHoldConference (const std::string& confID)
{
_debug ("CallManager::unHoldConference received %s\n", confID.c_str());
Manager::instance().unHoldConference(confID);
}
std::map< std::string, std::string >
CallManager::getConferenceDetails (const std::string& callID)
{