]> git.lyx.org Git - lyx.git/blob - src/support/fs_extras.h
Consistent use of preprocessor guards;
[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 namespace boost {
14 namespace filesystem {
15
16 bool is_readable(path const & ph);
17
18 bool is_writable(path const & ph);
19
20 bool is_readonly(path const & ph);
21
22 void copy_file(path const & source, path const & target, bool noclobber);
23
24 }
25 }