|  | OGRE 14.3
    Object-Oriented Graphics Rendering Engine | 
Resource holding data about a dynamic library. More...
#include <OgreDynLib.h>
 Inheritance diagram for Ogre::DynLib:
 Inheritance diagram for Ogre::DynLib:| Public Member Functions | |
| DynLib (const String &name) | |
| Default constructor - used by DynLibManager. | |
| ~DynLib () | |
| Default destructor. | |
| const String & | getName (void) const | 
| Get the name of the library. | |
| void * | getSymbol (const String &strName) const throw () | 
| Returns the address of the given symbol from the loaded library. | |
| void | load () | 
| Load the library. | |
| void | unload () | 
| Unload the library. | |
Resource holding data about a dynamic library.
This class holds the data required to get symbols from libraries loaded at run-time (i.e. from DLL's for so's)
| 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 |