LeviLamina
Loading...
Searching...
No Matches
UriData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct UriData {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> uri;
10 ::ll::TypedStorage<1, 1, bool> hasHomeButton;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 UriData& operator=(UriData const&);
16 UriData(UriData const&);
17 UriData();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI explicit UriData(::std::string overrideUri);
23
24 MCFOLD ::UriData& operator=(::UriData&&);
25
26 MCAPI ~UriData();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCFOLD void* $ctor(::std::string overrideUri);
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCFOLD void $dtor();
39 // NOLINTEND
40};
Definition UriData.h:5