LeviLamina
Loading...
Searching...
No Matches
LevelDbWritableFile.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class LevelDbWritableFile : public ::leveldb::WritableFile {
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 LevelDbWritableFile& operator=(LevelDbWritableFile const&);
21 LevelDbWritableFile(LevelDbWritableFile const&);
22 LevelDbWritableFile();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::leveldb::Status Append(::leveldb::Slice const& slice) /*override*/;
28
29 virtual ::leveldb::Status Close() /*override*/;
30
31 virtual ::leveldb::Status Flush() /*override*/;
32
33 virtual ::leveldb::Status Sync() /*override*/;
34
35 virtual ~LevelDbWritableFile() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI LevelDbWritableFile(::std::string filename, ::LevelDbLazyFile&& file);
42
43 MCNAPI ::leveldb::Status SyncDirIfManifest();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor(::std::string filename, ::LevelDbLazyFile&& file);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCNAPI ::leveldb::Status $Append(::leveldb::Slice const& slice);
56
57 MCNAPI ::leveldb::Status $Close();
58
59 MCNAPI ::leveldb::Status $Flush();
60
61 MCNAPI ::leveldb::Status $Sync();
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition LevelDbLazyFile.h:10
MCAPI::leveldb::Status $Close()
MCAPI::leveldb::Status $Flush()
MCAPI void * $ctor(::std::string filename, ::LevelDbLazyFile &&file)
MCAPI::leveldb::Status $Sync()
MCAPI::leveldb::Status SyncDirIfManifest()
MCAPI::leveldb::Status $Append(::leveldb::Slice const &slice)
MCAPI LevelDbWritableFile(::std::string filename, ::LevelDbLazyFile &&file)
static MCAPI void ** $vftable()
Definition Alias.h:14