更改项目结构, mp独立为一个模块

This commit is contained in:
2023-05-14 15:38:07 +08:00
parent dd89995e42
commit 8fa47d103c
34 changed files with 14 additions and 17 deletions

View File

@@ -5,8 +5,8 @@
#include <cstring>
#include <thread>
#include "Client.h"
#include "Mph.h"
#include "Response.h"
#include "../../../MP/Mph.h"
#include "../../../MP/Response.h"
Client::Client(const std::string&& ip, int port) : ip(ip), port(port) {

View File

@@ -8,7 +8,7 @@
#include <string>
#include <optional>
#include "Request.h"
#include "../../../MP/Request.h"
#include "event2/bufferevent.h"
#include "../core/Client.h"