mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-17 19:10:24 +00:00
10 lines
304 B
C++
10 lines
304 B
C++
#include "constrainedfilestream.hpp"
|
|
|
|
namespace Files
|
|
{
|
|
IStreamPtr openConstrainedFileStream(const std::string& filename, std::size_t start, std::size_t length)
|
|
{
|
|
return std::make_unique<ConstrainedFileStream>(std::make_unique<ConstrainedFileStreamBuf>(filename, start, length));
|
|
}
|
|
}
|