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
13public:
14 // prevent constructor by default
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCFOLD ::NetworkAddress& operator=(::NetworkAddress const&);
21
22 MCAPI ~NetworkAddress();
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28 MCFOLD void $dtor();
29 // NOLINTEND
30};
Definition NetworkAddress.h:5