openmw/components/files/openfile.hpp

16 lines
312 B
C++
Raw Permalink Normal View History

#ifndef OPENMW_COMPONENTS_FILES_OPENFILE_H
#define OPENMW_COMPONENTS_FILES_OPENFILE_H
#include <iosfwd>
#include <memory>
#include <string>
2022-09-09 12:13:47 +04:00
#include <boost/filesystem/fstream.hpp>
namespace Files
{
2022-09-09 12:13:47 +04:00
std::unique_ptr<boost::filesystem::ifstream> openBinaryInputFileStream(const std::string& path);
}
#endif