LeviLamina
Loading...
Searching...
No Matches
SaveTransactionManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10class Scheduler;
11class WorkerPool;
12// clang-format on
13
14class SaveTransactionManager : public ::Bedrock::EnableNonOwnerReferences {
15public:
16 // member variables
17 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SaveTransactionManager& operator=(SaveTransactionManager const&);
26 SaveTransactionManager(SaveTransactionManager const&);
27 SaveTransactionManager();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~SaveTransactionManager() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
39 ::WorkerPool& workerPool,
40 ::Scheduler& scheduler,
41 ::std::function<void(bool)> showIconFunction
42 );
43
44 MCNAPI void _hideGlobalSaveIcon();
45
46 MCNAPI void _showGlobalSaveIcon();
47
48 MCNAPI void onBeginCompaction();
49
50 MCNAPI void onEndCompaction();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCNAPI void* $ctor(::WorkerPool& workerPool, ::Scheduler& scheduler, ::std::function<void(bool)> showIconFunction);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftable()
MCAPI void _hideGlobalSaveIcon()
MCAPI void * $ctor(::WorkerPool &workerPool, ::Scheduler &scheduler, ::std::function< void(bool)> showIconFunction)
MCAPI SaveTransactionManager(::WorkerPool &workerPool, ::Scheduler &scheduler, ::std::function< void(bool)> showIconFunction)
MCAPI void _showGlobalSaveIcon()
MCAPI void onEndCompaction()
MCAPI void onBeginCompaction()
Definition Scheduler.h:15
Definition WorkerPool.h:20
Definition Alias.h:14