LeviLamina
Loading...
Searching...
No Matches
DispatcherProcess.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/DispatcherInterface.h"
7
8namespace Bedrock::Http {
9
11 public ::std::enable_shared_from_this<::Bedrock::Http::DispatcherProcess> {
12public:
13 // member variables
14 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 DispatcherProcess& operator=(DispatcherProcess const&);
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
28 virtual ~DispatcherProcess() /*override*/;
29
30 // vIndex: 2
31 virtual void initialize();
32
33 // vIndex: 3
34 virtual void shutdown();
35
36 // vIndex: 4
37 virtual void suspend();
38
39 // vIndex: 5
40 virtual void resume();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $initialize();
53
54 MCAPI void $shutdown();
55
56 MCAPI void $suspend();
57
58 MCAPI void $resume();
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
67
68} // namespace Bedrock::Http
Definition DispatcherInterface.h:17
Definition DispatcherProcess.h:11
Definition Alias.h:14