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 MCFOLD ::UriData& operator=(::UriData&&);
23
24 MCAPI ~UriData();
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32};
Definition UriData.h:5