OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
Resource holding data about a dynamic library. More...
#include <OgreDynLib.h>
Public Member Functions | |
DynLib (const String &name) | |
Default constructor - used by DynLibManager. More... | |
~DynLib () | |
Default destructor. More... | |
const String & | getName (void) const |
Get the name of the library. More... | |
void * | getSymbol (const String &strName) const throw () |
Returns the address of the given symbol from the loaded library. More... | |
void | load () |
Load the library. More... | |
void | unload () |
Unload the library. More... | |
Resource holding data about a dynamic library.
Ogre::DynLib::DynLib | ( | const String & | name | ) |
Default constructor - used by DynLibManager.
Ogre::DynLib::~DynLib | ( | ) |
Default destructor.
void Ogre::DynLib::load | ( | ) |
Load the library.
void Ogre::DynLib::unload | ( | ) |
Unload the library.
|
inline |
Get the name of the library.
void* Ogre::DynLib::getSymbol | ( | const String & | strName | ) | const |
throw | ( | ||||
) |
Returns the address of the given symbol from the loaded library.
strName | The name of the symbol to search for |