]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileInfo.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / FileInfo.h
index 309dcf9f9cfc7aada2baa0134d4a9835e279ff96..39551567a56773d2d796d9475c556ccbaad6b87f 100644 (file)
@@ -1,21 +1,17 @@
 // -*- 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 <sys/types.h>
@@ -24,6 +20,9 @@
 #include <boost/utility.hpp>
 #include "LString.h"
 
+namespace lyx {
+namespace support {
+
 /** Use objects of this class to get information about files.
  *
  * Users must make sure to check fi.isOK() before any operations
@@ -139,4 +138,7 @@ private:
        string fname_;
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif