DarkflameServer/dChatServer/ChatWebAPI.h
2025-01-02 20:28:03 -08:00

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