LeviLamina
Loading...
Searching...
No Matches
CrashSessionFileImpl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/application/crash_manager/CrashSessionFile.h"
7#include "mc/deps/core/file/PathBuffer.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Core { class Path; }
12// clang-format on
13
14namespace Bedrock {
15
16class CrashSessionFileImpl : public ::Bedrock::CrashSessionFile {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 CrashSessionFileImpl& operator=(CrashSessionFileImpl const&);
27 CrashSessionFileImpl(CrashSessionFileImpl const&);
28 CrashSessionFileImpl();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~CrashSessionFileImpl() /*override*/ = default;
34
35 virtual ::Core::PathBuffer<::std::string> const& configure(::Core::Path const&) /*override*/;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43};
44
45} // namespace Bedrock
Definition CrashSessionFile.h:15
Definition Path.h:17
Definition Alias.h:14