mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
b6e6f87f71
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9547 a592a061-630c-0410-9148-cb99ea01b6c8
18 lines
283 B
C++
18 lines
283 B
C++
// -*- C++ -*-
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
namespace boost {
|
|
namespace filesystem {
|
|
|
|
bool is_readable(path const & ph);
|
|
|
|
bool is_writable(path const & ph);
|
|
|
|
bool is_readonly(path const & ph);
|
|
|
|
void copy_file(path const & source, path const & target, bool noclobber);
|
|
|
|
}
|
|
}
|