Ejemplo n.º 1
0
bool ASI::DisconnectFromFuncSet(CRef& src, int caller)
{
    bool disconnected = true;

    Component* pComponent = src.GetInstance();
    if (pComponent != NULL)
    {
        disconnected = pComponent->DisconnectFromFuncSet(caller);
        src.ReleaseInstance();
    }

    return disconnected;
}