-
Notifications
You must be signed in to change notification settings - Fork 23
Database
Julien SOYSOUVANH edited this page Oct 24, 2021
·
1 revision
The database class is a singleton referencing the metadata of all reflected entities in the program. It is the API entry point to search for entities by name or id.
One can get the database instance by writing:
#include <Refureku/Refureku.h>
rfk::Database const& database = rfk::getDatabase();
Check the Database documentation for more information.