#include <vtkDynamicLoader.h>
Inheritance diagram for vtkDynamicLoader:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
Static Public Methods | |
vtkDynamicLoader * | New () |
int | IsTypeOf (const char *type) |
vtkDynamicLoader * | SafeDownCast (vtkObject *o) |
vtkLibHandle | OpenLibrary (const char *) |
int | CloseLibrary (vtkLibHandle) |
void * | GetSymbolAddress (vtkLibHandle, const char *) |
const char * | LibPrefix () |
const char * | LibExtension () |
const char * | LastError () |
Protected Methods | |
vtkDynamicLoader () | |
~vtkDynamicLoader () | |
vtkDynamicLoader (const vtkDynamicLoader &) | |
void | operator= (const vtkDynamicLoader &) |
Definition at line 74 of file vtkDynamicLoader.h.
|
Definition at line 103 of file vtkDynamicLoader.h. |
|
Definition at line 104 of file vtkDynamicLoader.h. |
|
Definition at line 105 of file vtkDynamicLoader.h. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. Definition at line 77 of file vtkDynamicLoader.h. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Load a dynamic library into the current process. The returned vtkLibHandle can be used to access the symbols in the library. |
|
Attempt to detach a dynamic library from the process. A value of true is returned if it is successful. |
|
Find the address of the symbol in the given library |
|
Return the library prefix for the given architecture |
|
Return the library extension for the given architecture |
|
Return the last error produced from a calls made on this class. |
|
Definition at line 106 of file vtkDynamicLoader.h. |