]> git.lyx.org Git - lyx.git/blobdiff - src/support/rmdir.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / rmdir.C
index 5b45cfba9b1d49bc1dac5d1bbe1cf47db42acf35..fa9ce896f158018598cf8071cc9ecce510ad120d 100644 (file)
@@ -1,10 +1,20 @@
+/**
+ * \file rmdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include <unistd.h>
 
 #include "lyxlib.h"
 
-int lyx::rmdir(string const & dir)
+int lyx::support::rmdir(std::string const & dir)
 {
        return ::rmdir(dir.c_str());
 }