fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
update_user_location_task.h
Go to the documentation of this file.
1 #ifndef UPDATE_USER_LOCATION_TASK_H
2 #define UPDATE_USER_LOCATION_TASK_H
3 
4 #include <QRunnable>
5 #include <string>
6 
7 class UpdateUserLocationTask : public QRunnable {
8 
9  void run();
10  public:
11  UpdateUserLocationTask(int userid, const std::string &sLastIP);
13  private:
14  int m_nUserID;
15  std::string m_sLastIP;
16  std::string TAG;
17 
18 };
19 
20 #endif // UPDATE_USER_LOCATION_TASK_H
UpdateUserLocationTask(int userid, const std::string &sLastIP)
Definition: update_user_location_task.cpp:13
Definition: update_user_location_task.h:7
std::string TAG
Definition: update_user_location_task.h:16
void run()
Definition: update_user_location_task.cpp:23
int m_nUserID
Definition: update_user_location_task.h:14
~UpdateUserLocationTask()
Definition: update_user_location_task.cpp:19
std::string m_sLastIP
Definition: update_user_location_task.h:15