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