コード例 #1
0
void
LoginProcess::getSession( QString token )
{
    m_token = token;
    connect( unicorn::Session::getSession( token ), SIGNAL( finished() ), SLOT( onGotSession() ) );
}
コード例 #2
0
void
LoginProcess::getSession()
{
    connect( unicorn::Session::getSession( m_token ), SIGNAL( finished() ), SLOT( onGotSession() ) );
}