mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
13 lines
146 B
C++
13 lines
146 B
C++
#include "rbac_rank.h"
|
|
|
|
RBACRank::RBACRank() :
|
|
Resource() {
|
|
|
|
id = 0;
|
|
rank_permissions = 0;
|
|
}
|
|
|
|
RBACRank::~RBACRank() {
|
|
permissions.clear();
|
|
}
|