You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/Web_Interface.hpp

16 lines
335 B

#ifndef CLASS_WEB_INTERFACE
#define CLASS_WEB_INTERFACE
class Web_Interface {
public:
Web_Interface() {};
virtual ~Web_Interface() {};
virtual void start(int p) {};
virtual void stop() {};
virtual void print_version() {};
};
typedef Web_Interface * create_Web_Interface_t();
#endif /* CLASS_WEB_INTERFACE */