[#2006] Add addParticipant method in managerimpl and related dbus messages

This commit is contained in:
Alexandre Savard
2009-08-28 12:45:01 -04:00
parent 95814e12c5
commit e03972a3af
9 changed files with 113 additions and 66 deletions

View File

@ -124,6 +124,13 @@ CallManager::joinParticipant (const std::string& sel_callID, const std::string&
Manager::instance().joinParticipant(sel_callID, drag_callID);
}
void
CallManager::addParticipant (const std::string& callID, const std::string& confID)
{
_debug ("CallManager::joinParticipant received %s, %s\n", callID.c_str(), confID.c_str());
Manager::instance().addParticipant(callID, confID);
}
void
CallManager::detachParticipant (const std::string& callID)
{