LeviLamina
Loading...
Searching...
No Matches
InMemoryRandomAccessFile.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class InMemoryRandomAccessFile : public ::leveldb::RandomAccessFile {
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~InMemoryRandomAccessFile() /*override*/ = default;
23
24 // vIndex: 1
25 virtual ::leveldb::Status Read(uint64 offset, uint64 n, ::leveldb::Slice* result, char* scratch) const /*override*/;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI ::leveldb::Status $Read(uint64 offset, uint64 n, ::leveldb::Slice* result, char* scratch) const;
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCAPI static void** $vftable();
44 // NOLINTEND
45};
Definition InMemoryRandomAccessFile.h:5
Definition Read.h:6
Definition Alias.h:14