1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 00:15:06 +00:00
OpenMW/components/files/openfile.hpp
2022-09-22 21:35:26 +03:00

15 lines
289 B
C++

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