#include "ltwrappr.h"
LSegment::LSegment()
Constructs and initializes the LSegment object.
None.
This is the constructor of the LSegment class.
Required DLLs and Libraries
The following example creates an instance of the LSegment class.
L_INT LSegment__LSegmentExample()
{
/* The following will cause the constructor to be called */
/* The destructor is called when the object is freed or goes out of
scope */
LSegment Segment;
//…
//…
return SUCCESS;
}