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