MyGUI
3.2.0
|
Resource holding data about a dynamic library. More...
#include <MyGUI_DynLib.h>
Public Member Functions | |
bool | load () |
void | unload () |
std::string | getName (void) const |
Get the name of the library. | |
void * | getSymbol (const std::string &strName) const throw () |
Protected Member Functions | |
DynLib (const std::string &name) | |
~DynLib () | |
std::string | dynlibError () const |
Gets the last loading error. | |
Protected Attributes | |
std::string | mName |
Name of library. | |
void * | mInstance |
Handle to the loaded library. | |
Friends | |
class | DynLibManager |
Resource holding data about a dynamic library.
Definition at line 63 of file MyGUI_DynLib.h.
MyGUI::DynLib::DynLib | ( | const std::string & | name | ) | [protected] |
Definition at line 34 of file MyGUI_DynLib.cpp.
MyGUI::DynLib::~DynLib | ( | ) | [protected] |
Definition at line 41 of file MyGUI_DynLib.cpp.
std::string MyGUI::DynLib::dynlibError | ( | ) | const [protected] |
Gets the last loading error.
Definition at line 85 of file MyGUI_DynLib.cpp.
std::string MyGUI::DynLib::getName | ( | void | ) | const |
Get the name of the library.
Definition at line 109 of file MyGUI_DynLib.cpp.
void * MyGUI::DynLib::getSymbol | ( | const std::string & | strName | ) | const throw () |
Returns the address of the given symbol from the loaded library.
strName | The name of the symbol to search for |
Definition at line 75 of file MyGUI_DynLib.cpp.
bool MyGUI::DynLib::load | ( | ) |
Load the library
Definition at line 46 of file MyGUI_DynLib.cpp.
void MyGUI::DynLib::unload | ( | ) |
Unload the library
Definition at line 61 of file MyGUI_DynLib.cpp.
friend class DynLibManager [friend] |
Definition at line 65 of file MyGUI_DynLib.h.
void* MyGUI::DynLib::mInstance [protected] |
Handle to the loaded library.
Definition at line 104 of file MyGUI_DynLib.h.
std::string MyGUI::DynLib::mName [protected] |
Name of library.
Definition at line 101 of file MyGUI_DynLib.h.