Renamed member variables and parameters.
This commit is contained in:
@@ -17,8 +17,8 @@ namespace ehs
|
||||
friend class NetServerCh;
|
||||
friend class NetClientCh;
|
||||
|
||||
UInt_64 hashId;
|
||||
Str_8 id;
|
||||
UInt_64 id;
|
||||
Str_8 name;
|
||||
Array<NetOp*> ops;
|
||||
|
||||
public:
|
||||
@@ -26,7 +26,7 @@ namespace ehs
|
||||
|
||||
NetSys();
|
||||
|
||||
NetSys(Str_8 id);
|
||||
NetSys(Str_8 name);
|
||||
|
||||
NetSys(NetSys &&sys) noexcept;
|
||||
|
||||
@@ -36,15 +36,15 @@ namespace ehs
|
||||
|
||||
NetSys &operator=(const NetSys &sys);
|
||||
|
||||
Str_8 GetId() const;
|
||||
UInt_64 GetId() const;
|
||||
|
||||
UInt_64 GetHashId() const;
|
||||
Str_8 GetName() const;
|
||||
|
||||
bool HasOperation(UInt_64 hashId) const;
|
||||
bool HasOperation(UInt_64 id) const;
|
||||
|
||||
bool AddOperation(NetOp *op);
|
||||
|
||||
private:
|
||||
void Execute(NetChannel *channel, NetEnd *endpoint, UInt_64 hashId, Serializer<UInt_64> &payload);
|
||||
void Execute(NetChannel *channel, NetEnd *issuer, UInt_64 opId, Serializer<UInt_64> &payload);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user