openmw/components/files/openfile.hpp

15 lines
289 B
C++
Raw Permalink Normal View History

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