You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/components/files/memorystream.hpp

32 lines
815 B
C++

#ifndef OPENMW_COMPONENTS_FILES_MEMORYSTREAM_H
#define OPENMW_COMPONENTS_FILES_MEMORYSTREAM_H
#include <istream>
namespace Files
{
struct MemBuf : std::streambuf
{
MemBuf(char const* buffer, size_t size)
{
// a streambuf isn't specific to istreams, so we need a non-const pointer :/
char* nonconstBuffer = (const_cast<char*>(buffer));
this->setg(nonconstBuffer, nonconstBuffer, nonconstBuffer + size);
}
};
/// @brief A variant of std::istream that reads from a constant in-memory buffer.
struct IMemStream: virtual MemBuf, std::istream
{
IMemStream(char const* buffer, size_t size)
: MemBuf(buffer, size)
, std::istream(static_cast<std::streambuf*>(this))
{
}
};
}
#endif