]> git.lyx.org Git - features.git/blobdiff - src/support/FileInfo.h
Replace LString.h with support/std_string.h,
[features.git] / src / support / FileInfo.h
index b83e0dc752a197815e6aaec482b64fe08e4b35d4..f1ca4618c66541497100c1e921210c1ceeb28203 100644 (file)
@@ -6,23 +6,22 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * 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>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <boost/utility.hpp>
-#include "LString.h"
+#include "support/std_string.h"
+
+namespace lyx {
+namespace support {
 
 /** Use objects of this class to get information about files.
  *
@@ -139,4 +138,7 @@ private:
        string fname_;
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif