mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
29 lines
410 B
C++
29 lines
410 B
C++
#ifndef RBAC_RANK_H
|
|
#define RBAC_RANK_H
|
|
|
|
#include "core/string.h"
|
|
#include "core/containers/vector.h"
|
|
|
|
#include "core/resource.h"
|
|
|
|
#include "rbac_permission.h"
|
|
|
|
class RBACRank : public Resource {
|
|
RCPP_OBJECT(RBACRank, Resource);
|
|
|
|
public:
|
|
int id;
|
|
|
|
String name;
|
|
String name_internal;
|
|
String settings;
|
|
|
|
int rank_permissions;
|
|
|
|
Vector<Ref<RBACPermission> > permissions;
|
|
|
|
RBACRank();
|
|
~RBACRank();
|
|
};
|
|
|
|
#endif |