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