LeviLamina
Loading...
Searching...
No Matches
RouterLocation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/interface/RouteMode.h"
7#include "mc/client/gui/oreui/interface/RouteType.h"
8
9// auto generated forward declare list
10// clang-format off
11class AbstractScene;
12// clang-format on
13
14namespace OreUI {
15
16class RouterLocation {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::AbstractScene>> mScene;
21 ::ll::TypedStorage<8, 32, ::std::string> mUrl;
22 ::ll::TypedStorage<8, 32, ::std::string> mPath;
23 ::ll::TypedStorage<8, 32, ::std::string> mQuery;
24 ::ll::TypedStorage<8, 32, ::std::string> mFragment;
25 ::ll::TypedStorage<4, 4, ::OreUI::RouteMode> mMode;
26 ::ll::TypedStorage<4, 4, ::OreUI::RouteType> mType;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 RouterLocation();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI RouterLocation(::OreUI::RouterLocation const&);
37
38 MCAPI RouterLocation(::OreUI::RouterLocation&&);
39
40 MCAPI RouterLocation(
41 ::std::weak_ptr<::AbstractScene> scene,
42 ::std::string const& url,
43 ::OreUI::RouteMode mode,
44 ::OreUI::RouteType routeType
45 );
46
47 MCAPI bool _isRealmsStoriesScreen(::std::string const& routeName) const;
48
49 MCFOLD ::std::string const& getFragment() const;
50
51 MCFOLD ::std::string const& getPath() const;
52
53 MCFOLD ::std::string const& getQuery() const;
54
55 MCAPI bool getShouldSendTelemetryEvents() const;
56
57 MCAPI ::std::unordered_map<::std::string, ::std::string> getTelemetryEventProperties() const;
58
59 MCAPI ::std::string getTelemetryId() const;
60
61 MCAPI bool isValid() const;
62
63 MCAPI ::OreUI::RouterLocation& operator=(::OreUI::RouterLocation const&);
64
65 MCAPI ::OreUI::RouterLocation& operator=(::OreUI::RouterLocation&&);
66
67 MCAPI ~RouterLocation();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
73 MCAPI void* $ctor(::OreUI::RouterLocation const&);
74
75 MCAPI void* $ctor(::OreUI::RouterLocation&&);
76
77 MCAPI void* $ctor(
78 ::std::weak_ptr<::AbstractScene> scene,
79 ::std::string const& url,
80 ::OreUI::RouteMode mode,
81 ::OreUI::RouteType routeType
82 );
83 // NOLINTEND
84
85public:
86 // destructor thunk
87 // NOLINTBEGIN
88 MCAPI void $dtor();
89 // NOLINTEND
90};
91
92} // namespace OreUI
Definition AbstractScene.h:5
Definition RouterLocation.h:7