#pragma once #include #include namespace ehs { class EHC; class NetSystem; class NetEnd; class NetOp { private: friend class NetSystem; UInt_64 hashId; Str_8 id; public: virtual ~NetOp() = default; NetOp(); NetOp(Str_8 id); NetOp(NetOp &&op) noexcept; NetOp(const NetOp &op); NetOp &operator=(NetOp &&op) noexcept; NetOp &operator=(const NetOp &op); Str_8 GetId() const; UInt_64 GetHashId() const; private: virtual void Process(EHC *ehc, NetEnd *endpoint, NetSystem *sys, Serializer &payload); }; }