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 MCNAPI LevelDbWritableFile(::std::string filename, ::Core::File&& file);
47
48 MCNAPI ::leveldb::Status SyncDirIfManifest();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(::std::string filename, ::Core::File&& file);
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI ::leveldb::Status $Append(::leveldb::Slice const& slice);
61
62 MCNAPI ::leveldb::Status $Close();
63
64 MCNAPI ::leveldb::Status $Flush();
65
66 MCNAPI ::leveldb::Status $Sync();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition File.h:19
Definition LevelDbWritableFile.h:10
MCAPI::leveldb::Status $Close()
MCAPI void * $ctor(::std::string filename, ::Core::File &&file)
MCAPI::leveldb::Status $Flush()
MCAPI::leveldb::Status $Sync()
MCAPI::leveldb::Status SyncDirIfManifest()
MCAPI::leveldb::Status $Append(::leveldb::Slice const &slice)
static MCAPI void ** $vftable()
MCAPI LevelDbWritableFile(::std::string filename, ::Core::File &&file)
Definition Alias.h:14