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(
39 ::std::weak_ptr<::AbstractScene> scene,
40 ::std::string const& url,
41 ::OreUI::RouteMode mode,
42 ::OreUI::RouteType routeType
43 );
44
45 MCFOLD ::std::string const& getFragment() const;
46
47 MCFOLD ::std::string const& getPath() const;
48
49 MCFOLD ::std::string const& getQuery() const;
50
51 MCAPI ::std::unordered_map<::std::string, ::std::string> getTelemetryEventProperties() const;
52
53 MCAPI ::std::string getTelemetryId() const;
54
55 MCAPI bool isValid() const;
56
57 MCAPI ::OreUI::RouterLocation& operator=(::OreUI::RouterLocation const&);
58
59 MCAPI ~RouterLocation();
60 // NOLINTEND
61
62public:
63 // static functions
64 // NOLINTBEGIN
65 MCAPI static bool _isRealmsStoriesScreen(::std::string const& routeName);
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCAPI void* $ctor(::OreUI::RouterLocation const&);
72
73 MCAPI void* $ctor(
74 ::std::weak_ptr<::AbstractScene> scene,
75 ::std::string const& url,
76 ::OreUI::RouteMode mode,
77 ::OreUI::RouteType routeType
78 );
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCAPI void $dtor();
85 // NOLINTEND
86};
87
88} // namespace OreUI
Definition AbstractScene.h:5
Definition RouterLocation.h:7