mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
21 lines
292 B
C++
21 lines
292 B
C++
#ifndef USER_CONTROLLER_H
|
|
#define USER_CONTROLLER_H
|
|
|
|
#include "core/object.h"
|
|
|
|
#include <string>
|
|
|
|
class User;
|
|
|
|
class UserController : public Object {
|
|
public:
|
|
static UserController *get_singleton();
|
|
|
|
UserController();
|
|
~UserController();
|
|
|
|
protected:
|
|
static UserController *_self;
|
|
};
|
|
|
|
#endif |