mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
DataBaseManager now inherits from Object.
This commit is contained in:
parent
a47b6fb206
commit
4502df78dc
@ -7,9 +7,13 @@
|
||||
#include <map>
|
||||
#include <functional>
|
||||
|
||||
#include "core/object.h"
|
||||
|
||||
#include "database.h"
|
||||
|
||||
class DatabaseManager {
|
||||
class DatabaseManager : public Object {
|
||||
RCPP_OBJECT(DatabaseManager, Object);
|
||||
|
||||
public:
|
||||
std::vector<Database *> databases;
|
||||
Database *ddb;
|
||||
|
Loading…
Reference in New Issue
Block a user