LIsis::LIsis

#include "Ltwrappr.h"

L_VOID LIsis::LIsis(void)

L_VOID LIsis::LIsis(hWnd, pBitmap)

HWND hWnd;

/* handle to the parent window */

LBitmapBase L_FAR * pBitmap;

/* pointer to a bitmap object */

Constructs and initializes the different member variables of the LIsis object.

This function is available in the Document/Medical Toolkits.

Parameter

Description

hWnd

Handle to the parent window for the scanning operations.

pBitmap

Pointer to a bitmap object that will be used for the scanning operations.

Returns

None

Comments

LIsis::LIsis() is a constructor for the LIsis class.

LIsis::LIsis(hWnd, pBitmap) constructs and initializes the member variables of the LIsis object using the hWnd and pBitmap parameters.

Required DLLs and Libraries

LTISI

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:

LIsis::~LIsis, Class Members

Example

This is an example, for LIsis::LIsis():

L_VOID  TestFunction()
{
   // this will call the default constructor and destructor when it is out of scope
   LIsis MyIsis ;

   //…
}

This is an example for LIsis::LIsis(hWnd, pBitmap):

L_VOID  MyISIS(HWND hWnd)
{
    LBitmapBase  LeadBitmap ;
    LeadBitmap.Load("Image1.cmp", 0, ORDER_RGB);

    LIsis  LeadIsis(hWnd, &LeadBitmap) ;
}