#include <DBModule.hh>
Inherits Module.
The DBModule module is a frontend for the database manager. Upon being added to the module manager (e.g. in its init() method), it creates a single DBManager instance with parameters retrieved from the configuration database. In particular, the following configuration symbols are supported:
Public Member Functions | |
| void | init (void) |
| void | uninit (void) |
| void | activate (void) |
| void | deactivate (void) |
| void | update (void) |
| DBManager * | getManager (void) |
|
|
This method returns the single DBManager instance created upon initialization. It is recommended that this instance is used for all database operations in RHexLib. The creation of a second database manager will waste resources and may cause weird behavior. |