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