]> git.lyx.org Git - lyx.git/blob - src/support/getcwd.cpp
add FileName::renameTo() method.
[lyx.git] / src / support / getcwd.cpp
1 /**
2  * \file getcwd.cpp
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 <config.h>
12
13 #include "support/lyxlib.h"
14
15 namespace lyx {
16 namespace support {
17
18 // Returns current working directory
19 FileName const getcwd()
20 {
21         return FileName(".");
22 }
23
24 } // namespace support
25 } // namespace lyx