|
Crazy Eddie's GUI System 0.8.7
|
Class that wraps and gives access to a dynamically linked module (.dll, .so, etc...) More...
#include <DynamicModule.h>
Inheritance diagram for CEGUI::DynamicModule:
Collaboration diagram for CEGUI::DynamicModule:Public Member Functions | |
| DynamicModule (const String &name) | |
| Construct the DynamicModule object by loading the dynamic loadable module specified. | |
| ~DynamicModule () | |
| Destroys the DynamicModule object and unloads the associated loadable module. | |
| const String & | getModuleName () const |
| Return a String containing the name of the dynamic module. | |
| void * | getSymbolAddress (const String &symbol) const |
| Return the address of the specified symbol. | |
Class that wraps and gives access to a dynamically linked module (.dll, .so, etc...)
Construct the DynamicModule object by loading the dynamic loadable module specified.
| name | String object holding the name of a loadable module. |
Return the address of the specified symbol.
| symbol | String holding the symbol to look up in the module. |
| InvalidRequestException | thrown if the symbol does not exist. |