2022-12-21 20:30:44 +08:00
|
|
|
#ifndef PCH_H
|
|
|
|
#define PCH_H
|
|
|
|
|
|
|
|
|
|
|
|
#define GLOG_NO_ABBREVIATED_SEVERITIES
|
|
|
|
#include "framework.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <strstream>
|
|
|
|
#include <string>
|
2023-03-31 21:21:35 +08:00
|
|
|
#include <optional>
|
2022-12-21 20:30:44 +08:00
|
|
|
#include <sstream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <time.h>
|
|
|
|
#include <fcntl.h>
|
2023-03-31 21:21:35 +08:00
|
|
|
#include "Windows.h"
|
|
|
|
#include "utils.h"
|
2023-05-11 00:04:46 +08:00
|
|
|
#include "spdlog/spdlog.h"
|
|
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
|
|
|
#include "spdlog/sinks/stdout_color_sinks.h"
|
|
|
|
|
2023-03-31 21:21:35 +08:00
|
|
|
|
2022-12-21 20:30:44 +08:00
|
|
|
#endif // PCH_H
|
|
|
|
|
|
|
|
|