add user list
This commit is contained in:
18
controller_user_info.h
Normal file
18
controller_user_info.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef CONTROLLER_USER_INFO_H
|
||||
#define CONTROLLER_USER_INFO_H
|
||||
|
||||
#include "view_user_info.h"
|
||||
#include "session_manager.h"
|
||||
|
||||
class controller_user_info
|
||||
{
|
||||
public:
|
||||
controller_user_info(view_user_info *view, session_manager *session);
|
||||
private:
|
||||
view_user_info *view;
|
||||
session_manager *sesion;
|
||||
void load_info();
|
||||
std::string get_first(std::string &info);
|
||||
};
|
||||
|
||||
#endif // CONTROLLER_USER_INFO_H
|
||||
Reference in New Issue
Block a user