mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 03:45:35 +00:00
15 lines
312 B
C++
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
|