1、删除部分三方库

2、整合ylib为一个lib库
This commit is contained in:
xx
2024-05-26 12:51:32 +08:00
parent 4391d84402
commit ef63cfd6aa
9264 changed files with 24373 additions and 1648659 deletions

23
include/base/error.h Normal file
View File

@@ -0,0 +1,23 @@
#pragma once
#include <string>
#include <iostream>
/**
* 基础错误类
*/
namespace ylib
{
class error_base
{
public:
const std::string& last_error();
public:
std::string m_lastErrorDesc;
};
namespace error{
void print(const std::string& value);
}
}