ROSE 0.11.145.147
Access.h
1// WARNING: Changes to this file must be contributed back to Sawyer or else they will
2// be clobbered by the next update from Sawyer. The Sawyer repository is at
3// https://gitlab.com/charger7534/sawyer.git.
4
5
6
7
8#ifndef Sawyer_Access_H
9#define Sawyer_Access_H
10
11#include <Sawyer/Sawyer.h>
12
13namespace Sawyer {
14namespace Access {
15
19enum Access {
20 EXECUTABLE = 0x00000001,
21 WRITABLE = 0x00000002,
22 READABLE = 0x00000004,
23 IMMUTABLE = 0x00000008,
24 PRIVATE = 0x00000010,
25 RESERVED_MASK = 0x000000ff,
26 USERDEF_MASK = 0xffffff00
27};
28
29} // namespace
30} // namespace
31#endif
Access
Kinds of access.
Definition ud/Utility.h:20
Sawyer support library.