mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
23 lines
409 B
C++
23 lines
409 B
C++
#ifndef USER_INITIALIZER_H
|
|
#define USER_INITIALIZER_H
|
|
|
|
#include "user_model.h"
|
|
#include "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 UserController *_controller;
|
|
static UserModel *_model;
|
|
};
|
|
|
|
#endif |