CoreLinux++  0.4.32
AccessRights.hpp
1 #if !defined(__ACCESSRIGHTS_HPP)
2 #define __ACCESSRIGHTS_HPP
3 
4 /*
5  CoreLinux++
6  Copyright (C) 1999,2000 CoreLinux Consortium
7 
8  The CoreLinux++ Library is free software; you can redistribute it and/or
9  modify it under the terms of the GNU Library General Public License as
10  published by the Free Software Foundation; either version 2 of the
11  License, or (at your option) any later version.
12 
13  The CoreLinux++ Library Library is distributed in the hope that it will
14  be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  Library General Public License for more details.
17 
18  You should have received a copy of the GNU Library General Public
19  License along with the GNU C Library; see the file COPYING.LIB. If not,
20  write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  Boston, MA 02111-1307, USA.
22 */
23 
24 #if !defined IN_COMMON_HPP
25  #error AccessRights.hpp is included by Common.hpp only.
26 #endif
27 
28 
29 namespace corelinux
30 {
37  {
39  OWNER_READ = 0400,
41  OWNER_MODIFY = 0200,
43  OWNER_ALL = 0600,
45  GROUP_READ = 040,
47  GROUP_MODIFY = 020,
49  GROUP_ALL = 060,
56  };
57 
64  {
66 
68 
70 
72 
74 
76  };
77 
83  {
85 
87 
89 
91 
93 
95  };
96 
97 }
98 
99 #endif
100 
101 /*
102  Common rcs information do not modify
103  $Author: prudhomm $
104  $Revision: 1.1 $
105  $Date: 2000/04/23 20:43:13 $
106  $Locker: $
107 */
108 
AccessRights
Access enumeration for various system level classes.
Definition: AccessRights.hpp:36
Owner has read access.
Definition: AccessRights.hpp:39
Group has write access.
Definition: AccessRights.hpp:47
CreateDisposition
Creation dispositions for various system utilities.
Definition: AccessRights.hpp:63
Public has read access.
Definition: AccessRights.hpp:51
Will throw exception if target exists.
Definition: AccessRights.hpp:71
Owner has read/write access.
Definition: AccessRights.hpp:43
read only access
Definition: AccessRights.hpp:90
AddressingConstraint
Addressings constraints.
Definition: AccessRights.hpp:82
read write access (no constraints)
Definition: AccessRights.hpp:86
Public has read/write access.
Definition: AccessRights.hpp:55
Will create or open.
Definition: AccessRights.hpp:67
Execute access.
Definition: AccessRights.hpp:94
Group has read/write access.
Definition: AccessRights.hpp:49
Public has write access.
Definition: AccessRights.hpp:53
Group has read access.
Definition: AccessRights.hpp:45
Will throw exception if target does NOT exist.
Definition: AccessRights.hpp:75
Owner has write access.
Definition: AccessRights.hpp:41

This is the CoreLinux++ reference manual
Provided by The CoreLinux Consortium