mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
24 lines
358 B
C++
24 lines
358 B
C++
#ifndef FILE_BASED_USER_MANAGER_H
|
|
#define FILE_BASED_USER_MANAGER_H
|
|
|
|
#include "core/object.h"
|
|
|
|
#include "user_manager.h"
|
|
|
|
class User;
|
|
|
|
class FileBasedUserManager : public UserManager {
|
|
|
|
public:
|
|
virtual User *create_user();
|
|
void load_all();
|
|
|
|
void set_path(const std::string &path);
|
|
|
|
FileBasedUserManager();
|
|
~FileBasedUserManager();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif |