wxhelper/src/handler.h

10 lines
233 B
C
Raw Permalink Normal View History

2023-03-31 21:21:35 +08:00
#ifndef WXHELPER_HANDLER_H_
#define WXHELPER_HANDLER_H_
#include <mongoose.h>
namespace wxhelper {
class Handler {
public:
virtual void HandlerRequest(struct mg_connection *c, void *ev_data) = 0;
};
} // namespace wxhelper
#endif