mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 08:53:04 +00:00
refactor: cryptography component
This commit is contained in:
@@ -6,7 +6,12 @@
|
||||
class ILoadingStream
|
||||
{
|
||||
public:
|
||||
ILoadingStream() = default;
|
||||
virtual ~ILoadingStream() = default;
|
||||
ILoadingStream(const ILoadingStream& other) = default;
|
||||
ILoadingStream(ILoadingStream&& other) noexcept = default;
|
||||
ILoadingStream& operator=(const ILoadingStream& other) = default;
|
||||
ILoadingStream& operator=(ILoadingStream&& other) noexcept = default;
|
||||
|
||||
virtual size_t Load(void* buffer, size_t length) = 0;
|
||||
virtual int64_t Pos() = 0;
|
||||
|
||||
Reference in New Issue
Block a user