mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 13:23:53 +00:00
9 lines
304 B
C++
9 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));
|
|
}
|
|
}
|