mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-21 20:27:02 +00:00
19 lines
229 B
C++
19 lines
229 B
C++
#ifndef CHATWEBAPI_H
|
|
#define CHATWEBAPI_H
|
|
|
|
#include "mongoose.h"
|
|
|
|
typedef struct mg_mgr mg_mgr;
|
|
|
|
class ChatWebAPI {
|
|
public:
|
|
ChatWebAPI();
|
|
~ChatWebAPI();
|
|
void ReceiveRequests();
|
|
void Listen();
|
|
private:
|
|
mg_mgr mgr;
|
|
};
|
|
|
|
#endif
|