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