void CommandConversationConference::execute_j()
{
        Conversation::Ref conversation = skype->get_current_conversation();
        if (conversation) {
                conversation->JoinLiveSession();
        }
}
Exemplo n.º 2
0
void SkypeFunctions::acceptCall(std::string userName){

    calling = true;
    Conversation::Ref cr;
    if (!skype->GetConversationByIdentity(userName.c_str(), cr)) throw SkypeException("Can't obtain conversation by identity.\n");
    if (!cr->JoinLiveSession()) throw SkypeException("Can't join to live session.\n");
}