]> git.lyx.org Git - lyx.git/blob - src/support/fs_extras.h
make "make distcheck" work
[lyx.git] / src / support / fs_extras.h
1 // -*- C++ -*-
2
3 #include <boost/filesystem/path.hpp>
4
5 namespace boost {
6 namespace filesystem {
7
8 bool is_readable(path const & ph);
9
10 bool is_writable(path const & ph);
11
12 bool is_readonly(path const & ph);
13
14 void copy_file(path const & source, path const & target, bool noclobber);
15
16 }
17 }