#include "ltwrappr.h"
LVectorMemoryFile::LVectorMemoryFile(L_VOID)
LVectorMemoryFile::LVectorMemoryFile(pVector)
LVectorBase * pVector; |
pointer to a vector object |
Constructs and initializes the different variables of the class object.
Parameter |
Description |
pVector |
Pointer to a LEAD vector object, used to initialize the LVectorMemoryFile object. |
None
LVectorMemoryFile::LVectorMemoryFile() is a constructor for the LVectorMemoryFile class.
LVectorMemoryFile::LVectorMemoryFile(pVector) initializes the member variables using the pVector parameter.
Required DLLs and Libraries
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Functions: |
For an example for LVectorMemoryFile::LVectorMemoryFile(pVector), refer to LVectorMemoryFile::LoadMemory. This is an example for LVectorMemoryFile::LVectorMemoryFile():
L_INT LVectorMemoryFile__LVectorMemoryFileExample(HWND hWnd){LBuffer Buffer;LVectorMemoryFile VectorMemoryFile;LVectorBase Vector;//Invalid until a vector is associated with the VectorMemoryFile objectif (VectorMemoryFile.IsValid())MessageBox(hWnd, TEXT("IsValid() returns TRUE"), TEXT(""), MB_OK);elseMessageBox(hWnd, TEXT("IsValid() returns FALSE"), TEXT(""), MB_OK);VectorMemoryFile.SetVector(&Vector);//Now the VectorMemoryFile object is validif (VectorMemoryFile.IsValid())MessageBox(hWnd, TEXT("IsValid() returns TRUE"), TEXT(""), MB_OK);elseMessageBox(hWnd, TEXT("IsValid() returns FALSE"), TEXT(""), MB_OK);//destructor called when out of scopereturn SUCCESS;}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
