mirror of
https://github.com/SunnyQjm/MIRCertificationManager.git
synced 2026-06-09 17:29:41 +08:00
17 lines
294 B
C++
17 lines
294 B
C++
//
|
|
// Created by mingj on 2020/5/30.
|
|
//
|
|
|
|
#ifndef MIRCERTIFICATIONMANAGER_FILEUTILS_H
|
|
#define MIRCERTIFICATIONMANAGER_FILEUTILS_H
|
|
|
|
#include <string>
|
|
|
|
class FileUtils {
|
|
public:
|
|
static std::string readFile2String(const std::string &filename);
|
|
};
|
|
|
|
|
|
#endif //MIRCERTIFICATIONMANAGER_FILEUTILS_H
|