fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
update_max_score_game_task.h
Go to the documentation of this file.
1 #ifndef UPDATE_MAX_SCORE_GAME_TASK_H
2 #define UPDATE_MAX_SCORE_GAME_TASK_H
3 
4 #include <QRunnable>
5 #include <cmd_handlers.h>
6 
7 class UpdateMaxScoreGameTask : public QRunnable {
8  void run();
9  public:
10  UpdateMaxScoreGameTask(int gameid);
12  private:
13  int m_nGameID;
14  std::string TAG;
16 };
17 
18 #endif // UPDATE_MAX_SCORE_GAME_TASK_H
void run()
Definition: update_max_score_game_task.cpp:21
int m_nGameID
Definition: update_max_score_game_task.h:13
IWebSocketServer * m_pWebSocketServer
Definition: update_max_score_game_task.h:15
IWebSocketServer -.
Definition: cmd_handlers.h:86
UpdateMaxScoreGameTask(int gameid)
Definition: update_max_score_game_task.cpp:12
~UpdateMaxScoreGameTask()
Definition: update_max_score_game_task.cpp:17
Definition: update_max_score_game_task.h:7
std::string TAG
Definition: update_max_score_game_task.h:14