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
10class DispatcherProcess : public ::Bedrock::Http::DispatcherInterface,
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&);
21 DispatcherProcess(DispatcherProcess const&);
22 DispatcherProcess();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~DispatcherProcess() /*override*/;
28
29 virtual void initialize();
30
31 virtual void shutdown();
32
33 virtual void suspend();
34
35 virtual void resume();
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI explicit DispatcherProcess(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCNAPI void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCNAPI void $initialize();
60
61 MCNAPI void $shutdown();
62
63 MCNAPI void $suspend();
64
65 MCNAPI void $resume();
66
67
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace Bedrock::Http
Definition DispatcherInterface.h:17
static MCAPI void ** $vftable()
MCAPI void * $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess > childProcess)
MCAPI DispatcherProcess(::std::shared_ptr<::Bedrock::Http::DispatcherProcess > childProcess)
Definition Alias.h:14