mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
21 lines
461 B
C++
21 lines
461 B
C++
![]() |
#ifndef OPENMW_CONSTRAINEDFILESTREAM_H
|
||
|
#define OPENMW_CONSTRAINEDFILESTREAM_H
|
||
|
|
||
|
#include <istream>
|
||
|
|
||
|
namespace Files
|
||
|
{
|
||
|
|
||
|
/// A file stream constrained to a specific region in the file, specified by the 'start' and 'length' parameters.
|
||
|
class ConstrainedFileStream : public std::istream
|
||
|
{
|
||
|
public:
|
||
|
ConstrainedFileStream(const char *filename,
|
||
|
size_t start=0, size_t length=0xFFFFFFFF);
|
||
|
virtual ~ConstrainedFileStream();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|