LeviLamina
Loading...
Searching...
No Matches
IStreamReader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace renoir {
6
7class IStreamReader {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~IStreamReader() = default;
12
13 virtual uint GetSize() = 0;
14
15 virtual uint Read(uint, uchar*, uint) = 0;
16
17 virtual void Close() = 0;
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
26
27} // namespace renoir
Definition IStreamReader.h:7