MCPcopy Create free account
hub / github.com/AbyssEngine/AbyssEngineOld / InputStream

Method InputStream

src/Abyss/FileSystem/InputStream.cpp:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace Abyss::FileSystem {
4
5InputStream::InputStream(std::unique_ptr<std::streambuf> streamBuff) : std::istream(streamBuff.get()), _streamBuff(std::move(streamBuff)) {}
6
7InputStream::InputStream(InputStream &&other) noexcept : std::istream(other._streamBuff.get()), _streamBuff(std::move(other._streamBuff)) {}
8

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected