mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
10 lines
233 B
C
10 lines
233 B
C
|
#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
|