[#2006] Add getConfList method over dbus

Conference list is filled after receiving conferenceChanged signals
This commit is contained in:
Alexandre Savard
2009-08-25 16:04:41 -04:00
parent 129e083cd3
commit e3dde95dc2
13 changed files with 186 additions and 16 deletions

View File

@ -131,8 +131,19 @@ CallManager::detachParticipant (const std::string& callID)
Manager::instance().detachParticipant(callID);
}
std::map< std::string, std::string >
CallManager::getConferenceDetails (const std::string& callID)
{
_debug ("CallManager::getCallDetails received\n");
return Manager::instance().getConferenceDetails (callID);
}
std::vector< std::string >
CallManager::getConferenceList (void)
{
_debug("CallManager::getConferenceList\n");
return Manager::instance().getConferenceList();
}
void
CallManager::setRecording (const std::string& callID)