summary refs log tree commit diff stats
path: root/generator/role.h
blob: 5fa68b8fe74bc3a07c948284b25b17c371d836ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef ROLE_H_249F9A9C
#define ROLE_H_249F9A9C

#include "selrestr.h"

namespace verbly {
  namespace generator {
    
    class role {
    public:
      
      // Mutators
      
      void setSelrestrs(selrestr selrestrs)
      {
        selrestrs_ = selrestrs;
      }
      
      // Accessors
      
      const selrestr& getSelrestrs() const
      {
        return selrestrs_;
      }
      
    private:
      
      selrestr selrestrs_;
      
    };
    
  };
};

#endif /* end of include guard: ROLE_H_249F9A9C */