Ejemplo n.º 1
0
int ASI::GetCaller(CRef& cref, const QString& uuid)
{
    int caller = -1;

    Component* pComponent = cref.GetInstance();
    if (pComponent != NULL)
    {
        caller = pComponent->GetCaller(uuid);
        cref.ReleaseInstance();
    }

    return caller;
}