LeviLamina
Loading...
Searching...
No Matches
TransactionFrame.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/FileAccessType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class PathView; }
11// clang-format on
12
13namespace Core {
14
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 TransactionFrame& operator=(TransactionFrame const&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI TransactionFrame(::Core::FileAccessType accessType, ::Core::PathView path);
34
35 MCAPI ~TransactionFrame();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::Core::FileAccessType accessType, ::Core::PathView path);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace Core
Definition PathView.h:16
Definition TransactionFrame.h:15
Definition Alias.h:14