Destroys the class object and frees any allocated variables and memory associated with the object.
#include "ltwrappr.h"
L_VOID LRasterPaint::~LRasterPaint(L_VOID)
None
This is the destructor for the LRasterPaint class.
L_INT LRasterPaint_LRasterPaintDestructorExample()
{
// this will call the default constructor and destructor when it is out of scope
LRasterPaint clsraster;
return SUCCESS;
}