X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8582d7dfe21e7225d4a715501d70c2649268228f..bc6cac0e474dfe2feb4983aef98f99e23a98ffc4:/projects/stargazer/plugins/authorization/ao/ao.h diff --git a/projects/stargazer/plugins/authorization/ao/ao.h b/projects/stargazer/plugins/authorization/ao/ao.h index dbb2993a..a97a0918 100644 --- a/projects/stargazer/plugins/authorization/ao/ao.h +++ b/projects/stargazer/plugins/authorization/ao/ao.h @@ -51,7 +51,7 @@ public: : user(u), auth(a) {} CHG_BEFORE_NOTIFIER(const CHG_BEFORE_NOTIFIER & rvalue) : user(rvalue.user), auth(rvalue.auth) {} - void Notify(const T & oldValue, const T & newValue); + void notify(const T & oldValue, const T & newValue) override; UserPtr GetUser() const { return user; } private: @@ -68,7 +68,7 @@ public: : user(u), auth(a) {} CHG_AFTER_NOTIFIER(const CHG_AFTER_NOTIFIER & rvalue) : user(rvalue.user), auth(rvalue.auth) {} - void Notify(const T & oldValue, const T & newValue); + void notify(const T & oldValue, const T & newValue) override; UserPtr GetUser() const { return user; } private: @@ -125,7 +125,7 @@ private: public: explicit ADD_USER_NONIFIER(AUTH_AO & a) : auth(a) {} virtual ~ADD_USER_NONIFIER() {} - void Notify(const UserPtr & user) { auth.AddUser(user); } + void notify(const UserPtr & user) override { auth.AddUser(user); } private: ADD_USER_NONIFIER(const ADD_USER_NONIFIER & rvalue); @@ -138,7 +138,7 @@ private: public: explicit DEL_USER_NONIFIER(AUTH_AO & a) : auth(a) {} virtual ~DEL_USER_NONIFIER() {} - void Notify(const UserPtr & user) { auth.DelUser(user); } + void notify(const UserPtr & user) override { auth.DelUser(user); } private: DEL_USER_NONIFIER(const DEL_USER_NONIFIER & rvalue);