LeviLamina
Loading...
Searching...
No Matches
NetworkAddress.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> host;
10 ::ll::TypedStorage<2, 2, ushort> port;
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14public:
15 // prevent constructor by default
18
19#else // LL_PLAT_C
20#endif
21public:
22 // member functions
23 // NOLINTBEGIN
24#ifdef LL_PLAT_S
25 MCFOLD ::NetworkAddress& operator=(::NetworkAddress const&);
26
27 MCAPI ~NetworkAddress();
28#endif
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34#ifdef LL_PLAT_S
35 MCFOLD void $dtor();
36#endif
37 // NOLINTEND
38};
Definition NetworkAddress.h:5