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
33 // NOLINTEND
34
35public:
36 // prevent constructor by default
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit AsynchronousIPResolver(::std::string url);
45
46 MCAPI void _resolve();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::std::string url);
53 // NOLINTEND
54};
Definition AsynchronousIPResolver.h:5
Definition AsynchronousIPResolver.h:13
Definition Alias.h:14