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 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCNAPI LevelDbWritableFile(::std::string filename, ::LevelDbLazyFile&& file);
40
41 MCNAPI ::leveldb::Status SyncDirIfManifest();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::std::string filename, ::LevelDbLazyFile&& file);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCNAPI ::leveldb::Status $Append(::leveldb::Slice const& slice);
54
55 MCNAPI ::leveldb::Status $Close();
56
57 MCNAPI ::leveldb::Status $Flush();
58
59 MCNAPI ::leveldb::Status $Sync();
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition LevelDbLazyFile.h:5
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