LeviLamina
Loading...
Searching...
No Matches
FlushableEnv.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class FlushableEnv : public ::leveldb::EnvWrapper {
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 // vIndex: 0
10 virtual ~FlushableEnv() /*override*/;
11
12 // vIndex: 20
13 virtual void flushToPermanentStorage() = 0;
14 // NOLINTEND
15
16public:
17 // destructor thunk
18 // NOLINTBEGIN
19 MCFOLD void $dtor();
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27};
Definition FlushableEnv.h:5