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 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string filename, ::LevelDbLazyFile&& file);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI ::leveldb::Status $Append(::leveldb::Slice const& slice);
52
53 MCNAPI ::leveldb::Status $Close();
54
55 MCNAPI ::leveldb::Status $Flush();
56
57 MCNAPI ::leveldb::Status $Sync();
58
59
60 // NOLINTEND
61};
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 $Append(::leveldb::Slice const &slice)
MCAPI LevelDbWritableFile(::std::string filename, ::LevelDbLazyFile &&file)
Definition Alias.h:14