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
7namespace Core { class File; }
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
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual ::leveldb::Status Append(::leveldb::Slice const& slice) /*override*/;
29
30 // vIndex: 2
31 virtual ::leveldb::Status Close() /*override*/;
32
33 // vIndex: 3
34 virtual ::leveldb::Status Flush() /*override*/;
35
36 // vIndex: 4
37 virtual ::leveldb::Status Sync() /*override*/;
38
39 // vIndex: 0
40 virtual ~LevelDbWritableFile() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI LevelDbWritableFile(::std::string filename, ::Core::File&& file);
47
48 MCAPI ::leveldb::Status SyncDirIfManifest();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::std::string filename, ::Core::File&& file);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI ::leveldb::Status $Append(::leveldb::Slice const& slice);
67
68 MCAPI ::leveldb::Status $Close();
69
70 MCAPI ::leveldb::Status $Flush();
71
72 MCAPI ::leveldb::Status $Sync();
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition File.h:19
Definition LevelDbWritableFile.h:10
Definition Alias.h:14