LeviLamina
Loading...
Searching...
No Matches
ActivationUri.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ActivationUri {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 ActivationUri& operator=(ActivationUri const&);
16 ActivationUri(ActivationUri const&);
17 ActivationUri();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22#ifdef LL_PLAT_C
23 MCNAPI ~ActivationUri();
24#endif
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCNAPI static ::std::unordered_map<::std::string, ::std::string>
32 extractArgumentsFromFilename(::std::string_view filename, ::std::optional<::std::string> originalPath);
33
34 MCNAPI static ::std::unordered_map<::std::string, ::std::string> extractArgumentsFromUri(::std::string const& uri);
35#endif
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void $dtor();
43#endif
44 // NOLINTEND
45};
Definition Alias.h:14