mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
b09570692e
ESMReader reads the whole file, there is no need in the ConstrainedFileStream.
14 lines
257 B
C++
14 lines
257 B
C++
#ifndef OPENMW_COMPONENTS_FILES_OPENFILE_H
|
|
#define OPENMW_COMPONENTS_FILES_OPENFILE_H
|
|
|
|
#include <iosfwd>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace Files
|
|
{
|
|
std::unique_ptr<std::ifstream> openBinaryInputFileStream(const std::string& path);
|
|
}
|
|
|
|
#endif
|