]> git.lyx.org Git - lyx.git/blob - src/support/fs_extras.h
Detect mode_t for safe use of chmod, and for scons/msvc
[lyx.git] / src / support / fs_extras.h
1 // -*- C++ -*-
2 /* \file fs_extras.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <boost/filesystem/path.hpp>
12
13
14 namespace boost {
15 namespace filesystem {
16
17 bool is_readable(path const & ph);
18
19 bool is_writable(path const & ph);
20
21 bool is_readonly(path const & ph);
22
23 void copy_file(path const & source, path const & target, bool noclobber);
24
25 }
26 }