mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
23 lines
427 B
C++
23 lines
427 B
C++
#ifndef USER_INITIALIZER_H
|
|
#define USER_INITIALIZER_H
|
|
|
|
#include "rbac_user_model.h"
|
|
#include "rbac_user_controller.h"
|
|
|
|
class UserInitializer {
|
|
public:
|
|
static void allocate_controller();
|
|
static void free_controller();
|
|
|
|
static void allocate_model();
|
|
static void free_model();
|
|
|
|
static void allocate_all();
|
|
static void free_all();
|
|
|
|
protected:
|
|
static RBACUserController *_controller;
|
|
static RBACUserModel *_model;
|
|
};
|
|
|
|
#endif |