]> git.lyx.org Git - lyx.git/blobdiff - src/lastfiles.C
remove unneeded functions
[lyx.git] / src / lastfiles.C
index d53206221975b11dcc12033aadf5c5eb1f449669..ef200b2c9d992c2f9941e77d107082edd069d337 100644 (file)
@@ -1,34 +1,35 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+/**
+ * \file lastfiles.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 "lastfiles.h"
+#include "debug.h"
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include "support/FileInfo.h"
 
-#include <fstream>
 #include <algorithm>
+#include <fstream>
+#include <iterator>
 
-#include "support/FileInfo.h"
-#include "lastfiles.h"
-#include "debug.h"
+using lyx::support::FileInfo;
 
-using std::ifstream;
+using std::copy;
+using std::endl;
+using std::find;
 using std::getline;
+using std::string;
+using std::ifstream;
 using std::ofstream;
-using std::copy;
 using std::ostream_iterator;
-using std::find;
-using std::endl;
+
 
 LastFiles::LastFiles(string const & filename, bool st, unsigned int num)
        : dostat(st)
@@ -59,7 +60,7 @@ void LastFiles::readFile(string const & filename)
        string tmp;
        FileInfo fileInfo;
 
-       while(getline(ifs, tmp) && files.size() < num_files) {
+       while (getline(ifs, tmp) && files.size() < num_files) {
                if (dostat) {
                        if (!(fileInfo.newFile(tmp).exist() &&
                              fileInfo.isRegular()))