Liquid XML Data Binder (C++, Java, VB6) / Reference / C++ / Reference / CSmartPtr / C++ operator& - CSmartPtr
    C++ operator& - CSmartPtr
    T** operator&()
      Property Description  
        Returns Pointer to a pointer to the object wrapped by the smart pointer  
        Description Allows the smart pointer to be referenced (se example)  
        Remarks Un expected behavior may arise if the ptr contained within the smart pointer is NULL.  
        Example

    void MyFunction(CMyElm** ppElm)
    {
    ..
    }


    CMyElmPtr spElm = ...;

    MyFunction(&spElm);