fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
employ_chats.h
Go to the documentation of this file.
1 #ifndef EMPLOY_CHATS_H
2 #define EMPLOY_CHATS_H
3 
4 #include <employees.h>
5 #include <model_leak.h>
6 
7 class EmployChats : public WsjcppEmployBase {
8  public:
9  EmployChats();
10  static std::string name() { return "EmployChats"; }
11  virtual bool init();
12  virtual bool deinit();
13 
14  private:
15  std::string TAG;
16 };
17 
18 #endif // EMPLOY_CHATS_H
EmployChats()
Definition: employ_chats.cpp:16
std::string TAG
Definition: employ_chats.h:15
static std::string name()
Definition: employ_chats.h:10
virtual bool deinit()
Definition: employ_chats.cpp:30
Definition: wsjcpp_employees.h:13
Definition: employ_chats.h:7
virtual bool init()
Definition: employ_chats.cpp:23