NetCpp/include/project.h

32 lines
450 B
C
Raw Permalink Normal View History

2020-11-24 06:39:43 +00:00
//
// Created by 胡宇 on 2020/10/23.
//
#ifndef NET_PROJECT_H
#define NET_PROJECT_H
// 基础
#include <cerrno>
#include <cstdio>
#include <cstdlib>
#include <cstdint>
// 基本
#include <stdexcept>
#include <cstdlib>
#include <cstring>
// 流
#include <sstream>
// 数据结构
2020-12-10 11:04:05 +00:00
#include <vector>
2020-11-24 06:39:43 +00:00
#include <string>
#include <queue>
// 高级组件
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#endif //NET_PROJECT_H