nn::nex::DORef::DORef Constructor

Syntax

DORef();
DORef(
     DOHandle hDO
);
DORef(
     const DORef & oRef
);
DORef(
     DuplicatedObject * pDO
);

Overloaded Member Functions

DORef ( ) Initializes the reference as an invalid reference.
DORef ( DOHandle ) Initializes the reference using a duplicated object handle.
DORef ( const DORef & ) Copy constructor.
DORef ( DuplicatedObject * ) Initializes using the specified pointer to a duplicated object.

Description of DORef ( )

Description of DORef ( DOHandle )

Duplicated object handles (DOHandle) are handles that uniquely represent the duplicated objects existing within a session. This constructor uses the duplicated object handle to create a safe reference to the duplicated object.

If the reference to the duplicated object handle is constructed successfully, the IsValid function returns true.

Description of DORef ( const DORef & )

Initializes the reference using the duplicated object indicated by the specified reference.

If the reference to the duplicated object handle is constructed successfully, the IsValid function returns true.

Description of DORef ( DuplicatedObject * )

Initializes the reference so that it references a pointer to the specified duplicated object.

If the reference to the duplicated object handle is constructed successfully, the IsValid function returns true.


CONFIDENTIAL