1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/files/openfile.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
289 B
C++
Raw Normal View History

#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