1234567891011121314151617181920 |
- //
- // Created by xcbosa on 2023/1/28.
- //
- #pragma once
- #include <vector>
- #include <map>
- #include <string>
- #include <iostream>
- #include <thread>
- #include <mutex>
- #include <sstream>
- #include <fstream>
- using namespace std;
- namespace xc::utils {
- string contentsOfTextFile(string filePath);
- }
|