Renamed member variables and parameters.
This commit is contained in:
@@ -14,15 +14,15 @@ namespace ehs
|
||||
private:
|
||||
friend class NetSys;
|
||||
|
||||
UInt_64 hashId;
|
||||
Str_8 id;
|
||||
UInt_64 id;
|
||||
Str_8 name;
|
||||
|
||||
public:
|
||||
virtual ~NetOp() = default;
|
||||
|
||||
NetOp();
|
||||
|
||||
NetOp(Str_8 id);
|
||||
NetOp(Str_8 name);
|
||||
|
||||
NetOp(NetOp &&op) noexcept;
|
||||
|
||||
@@ -32,9 +32,9 @@ namespace ehs
|
||||
|
||||
NetOp &operator=(const NetOp &op);
|
||||
|
||||
Str_8 GetId() const;
|
||||
UInt_64 GetId() const;
|
||||
|
||||
UInt_64 GetHashId() const;
|
||||
Str_8 GetName() const;
|
||||
|
||||
private:
|
||||
virtual void Execute(NetChannel *channel, NetEnd *issuer, NetSys *sys, Serializer<UInt_64> &payload);
|
||||
|
Reference in New Issue
Block a user