LInet::operator =
#include "ltwrappr.h"
LInet& LInet::operator =(LInetSrc)
LInet& LInetSrc; |
/* the LInet object to copy */ |
Copies an LInet object from another LInet object.
Parameter |
Description |
LInetSrc |
The LInet object to copy. |
Returns
The LInet object.
Comments
Use this operator to make a copy of an LInet object from another LInet object. Only the LInet handle will be copied, all other data members of the destination object will not be changed.
The LInetSrc parameter is passed by reference, and is a required parameter.
Required DLLs and Libraries
LTNET For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
Example
L_INT LInet__operatorExample(LInet MyInet1) { LInet MyInet2; // other operations //now copy the Inet MyInet2 = MyInet1; return SUCCESS; }