1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/components/files/openfile.hpp

15 lines
289 B
C++
Raw Normal View History

#ifndef OPENMW_COMPONENTS_FILES_OPENFILE_H
#define OPENMW_COMPONENTS_FILES_OPENFILE_H
2022-09-22 18:26:05 +00:00
#include <filesystem>
#include <iosfwd>
#include <memory>
#include <string>
namespace Files
{
2022-09-22 18:26:05 +00:00
std::unique_ptr<std::ifstream> openBinaryInputFileStream(const std::filesystem::path& path);
}
#endif