]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileInfo.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / FileInfo.h
index 95f84c7d28e8d4f1a53e0b8c24ad398fc1626a69..2bf5eaae778cbd2e28b86dd5381420de4eb352d4 100644 (file)
@@ -1,28 +1,29 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file FileInfo.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef FILE_INFO_H
 #define FILE_INFO_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include <ctime>
+#include <boost/utility.hpp>
 
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>
-#include <boost/utility.hpp>
-#include "LString.h"
+
+#include <ctime>
+#include <string>
+
+
+namespace lyx {
+namespace support {
 
 /** Use objects of this class to get information about files.
  *
@@ -37,30 +38,25 @@ public:
        /** Get information about file.
            If link is true, the information is about the link itself, not
            the file that is obtained by tracing the links. */
-       explicit
-       FileInfo(string const & path, bool link = false);
+       explicit FileInfo(std::string const & path, bool link = false);
 
        /// File descriptor
-       explicit
-       FileInfo(int fildes);
+       explicit FileInfo(int fildes);
 
        /// Query a new file
-       FileInfo & newFile(string const & path, bool link = false);
+       FileInfo & newFile(std::string const & path, bool link = false);
 
        /// Query a new file descriptor
        FileInfo & newFile(int fildes);
 
        /// Returns a character describing file type (ls -F)
-       char const * typeIndicator() const;
+       char typeIndicator() const;
 
        /// File protection mode
        mode_t getMode() const;
 
        /// Constructs standard mode string (ls style)
-       void modeString(char * str) const;
-
-       /// returns a letter describing a file type (ls style)
-       char typeLetter() const;
+       std::string modeString() const;
 
        ///
        time_t getModificationTime() const;
@@ -141,7 +137,10 @@ private:
        ///
        int err_;
        ///
-       string fname_;
+       std::string fname_;
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif