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 // virtual function thunks
30 // NOLINTBEGIN
31 MCNAPI ::leveldb::Status $Read(uint64 offset, uint64 n, ::leveldb::Slice* result, char* scratch) const;
32 // NOLINTEND
33
34public:
35 // vftables
36 // NOLINTBEGIN
37 MCNAPI static void** $vftable();
38 // NOLINTEND
39};
Definition InMemoryRandomAccessFile.h:5
static MCAPI void ** $vftable()
MCAPI::leveldb::Status $Read(uint64 offset, uint64 n, ::leveldb::Slice *result, char *scratch) const
Definition Read.h:6
Definition Alias.h:14