LeviLamina
Loading...
Searching...
No Matches
AsynchronousIPResolver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // AsynchronousIPResolver inner types declare
8 // clang-format off
9 struct ResolvedIp;
10 // clang-format on
11
12 // AsynchronousIPResolver inner types define
13 struct ResolvedIp {
14 public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21 public:
22 // prevent constructor by default
23 ResolvedIp& operator=(ResolvedIp const&);
24 ResolvedIp(ResolvedIp const&);
25 ResolvedIp();
26 };
27
28public:
29 // member variables
30 // NOLINTBEGIN
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI explicit AsynchronousIPResolver(::std::string url);
46
47 MCNAPI void _resolve();
48
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::std::string url);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
Definition AsynchronousIPResolver.h:5
MCAPI AsynchronousIPResolver(::std::string url)
MCAPI void * $ctor(::std::string url)
Definition AsynchronousIPResolver.h:13
Definition Alias.h:14