]> git.lyx.org Git - lyx.git/blobdiff - src/lastfiles.C
more cursor dispatch
[lyx.git] / src / lastfiles.C
index 615b9de7ee35c8e52338e9dd516aca4369f6526d..ef200b2c9d992c2f9941e77d107082edd069d337 100644 (file)
@@ -1,36 +1,33 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lastfiles.C
+ * 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.
+ */
 
 #include <config.h>
 
-
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "lastfiles.h"
 #include "debug.h"
 
 #include "support/FileInfo.h"
 
-#include <fstream>
 #include <algorithm>
+#include <fstream>
 #include <iterator>
 
+using lyx::support::FileInfo;
 
-using std::ifstream;
-using std::ofstream;
-using std::getline;
+using std::copy;
 using std::endl;
 using std::find;
-using std::copy;
+using std::getline;
+using std::string;
+using std::ifstream;
+using std::ofstream;
 using std::ostream_iterator;