From b20f07df57cf99bbe5fd09276b6cb2f239c72506 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Tue, 22 Oct 2013 23:58:33 +0100 Subject: [PATCH] small change to rbac role ... this still is not really even started --- include/rbac/role.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/rbac/role.h b/include/rbac/role.h index 843b857..348f006 100644 --- a/include/rbac/role.h +++ b/include/rbac/role.h @@ -26,12 +26,15 @@ #include #include "class.h" +#include "ebac/permission.h" #include "storage/storage.h" CLASS(RbacRole) { - char * name; - size_t nname; + char * name; + size_t nname; + + RbacPermission * permissions; }; #endif // __RBAC_ROLE_H__