LeviLamina
Loading...
Searching...
No Matches
EventResponseFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Factory.h"
7#include "mc/util/json_util/JsonSchemaObjectNode.h"
8
9// auto generated forward declare list
10// clang-format off
11class EventResponse;
12class PackLoadContext;
13class SemVersion;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class EventResponseFactory : public ::Factory<::EventResponse> {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<
23 8,
24 16,
25 ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>>>
26 mSchema;
27 // NOLINTEND
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~EventResponseFactory();
33
34 virtual void initializeFactory(::PackLoadContext const& packLoadContext) = 0;
35
36 virtual void initSchema() = 0;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection>> const&
43 getSchema() const;
44
45 MCNAPI void initSchema(::std::string const& schemaName, ::SemVersion const& version);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition EventResponseFactory.h:18
MCAPI void initSchema(::std::string const &schemaName, ::SemVersion const &version)
MCAPI ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > const & getSchema() const
MCAPI void $dtor()
static MCAPI void ** $vftable()
Definition EventResponse.h:17
Definition Factory.h:6
Definition EmptyClass.h:7
Definition PackLoadContext.h:20
Definition SemVersion.h:15
Definition EventResponseCollection.h:16