在Windows上实现运行Linux程序,附示例代码(7)

#pragma once #include <string> #include <fstream> namespace HelloElfLoader { class Loader { std::ifstream fileStream_; public: Loader(const std::string& path); Loader(std::ifstream&& fileStream); void execute(); }; }

构造函数如下, 也就是标准的c++打开文件的代码

HelloElfLoader.cpp:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/72b280b1eb63e21e26b1857dcd76d550.html