1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 03:45:35 +00:00
openmw/components/files/openfile.hpp
2022-09-15 14:14:52 +04:00

15 lines
312 B
C++

#ifndef OPENMW_COMPONENTS_FILES_OPENFILE_H
#define OPENMW_COMPONENTS_FILES_OPENFILE_H
#include <iosfwd>
#include <memory>
#include <string>
#include <boost/filesystem/fstream.hpp>
namespace Files
{
std::unique_ptr<boost::filesystem::ifstream> openBinaryInputFileStream(const std::string& path);
}
#endif