mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:59:54 +00:00
11 lines
337 B
C++
11 lines
337 B
C++
#include <filesystem>
|
|
|
|
#include "constrainedfilestream.hpp"
|
|
|
|
namespace Files
|
|
{
|
|
IStreamPtr openConstrainedFileStream(const std::filesystem::path &filename, std::size_t start, std::size_t length)
|
|
{
|
|
return std::make_unique<ConstrainedFileStream>(std::make_unique<ConstrainedFileStreamBuf>(filename, start, length));
|
|
}
|
|
}
|