Rudiments
link.h
1 // Copyright (c) 2004 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_LINK_H
5 #define RUDIMENTS_LINK_H
6 
7 #include <rudiments/private/link.h>
8 
9 class linkprivate;
10 
11 // like file class, but some methods operate on the link instead of the
12 // file the link points to
13 
14 // wrap:
15 // unistd.h - lchown()
16 // sys/stat.h - lstat(),lchmod(),
17 // sys/xattr.h - lsetxattr(),lgetxattr(),llistxattr(),lremovexattr()
18 class RUDIMENTS_DLLSPEC link : public file {
19  public:
20 
21  #include <rudiments/private/link.h>
22 };
23 
24 #endif