diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-12-05 16:42:17 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-12-05 16:42:17 +0100 |
commit | c933f324085d025d4b1b96f4405cdffff52e9256 (patch) | |
tree | 6c9dee88d0bef7e19707676fd620d689ab7e5f88 /include | |
parent | b553bf90024895552630fac054213a50ebf9d76c (diff) |
m_cap Make Capability objects compatible with dynamic_references, add Cap::Reference
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/cap.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/modules/cap.h b/include/modules/cap.h index 9ff5faca9..e6f9340e8 100644 --- a/include/modules/cap.h +++ b/include/modules/cap.h @@ -285,4 +285,32 @@ namespace Cap return NULL; } }; + + /** Reference to a cap. The cap may be provided by another module. + */ + class Reference + { + dynamic_reference_nocheck<Capability> ref; + + public: + /** Constructor, initializes the capability reference + * @param mod Module creating this object + * @param Name Raw name of the cap as used in the protocol (CAP LS, etc.) + */ + Reference(Module* mod, const std::string& Name) + : ref(mod, "cap/" + Name) + { + } + + /** Check whether a user has the referenced capability turned on. + * @param user User to check + * @return True if the user is using the referenced capability, false otherwise + */ + bool get(LocalUser* user) + { + if (ref) + return ref->get(user); + return false; + } + }; } |