Plasma Engine  2.0
Loading...
Searching...
No Matches
RemoteInterfaceEnet.h
1#pragma once
2
3#include <Foundation/Communication/RemoteInterface.h>
4
5#ifdef BUILDSYSTEM_ENABLE_ENET_SUPPORT
6
8class PL_FOUNDATION_DLL plRemoteInterfaceEnet : public plRemoteInterface
9{
10public:
11 ~plRemoteInterfaceEnet();
12
15
17 plUInt16 GetPort() const { return m_uiPort; }
18
19private:
20 plRemoteInterfaceEnet();
21 friend class plRemoteInterfaceEnetImpl;
22
23protected:
24 plUInt16 m_uiPort = 0;
25};
26
27#endif
Base class for all memory allocators.
Definition Allocator.h:23
static PL_ALWAYS_INLINE plAllocator * GetDefaultAllocator()
The default allocator can be used for any kind of allocation if no alignment is required.
Definition Basics.h:82
Definition RemoteInterface.h:60
Definition Allocator_inl.h:18