]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
John's Layout Tabular UI improvements and Martins fixes to clearing the
[lyx.git] / src / DepTable.h
index 675191b08dd100f2ce331e1c520f9f6cba87890d..45c89abfe95b608e2aca40761209d8da493872ae 100644 (file)
@@ -4,9 +4,9 @@
  * 
  *           LyX, The Document Processor
  *          Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *        
- *           This file is Copyright 1996-2000
+ *           This file is Copyright 1996-2001
  *           Lars Gullik Bjønnes
  *
  * ====================================================== 
@@ -51,8 +51,13 @@ public:
        void remove_files_with_extension(string const &);
 private:
        ///
-       typedef std::map<string,
-               std::pair<unsigned long, unsigned long> > DepList;
+       struct dep_info {
+               unsigned long first;
+               unsigned long second;
+               long mtime;
+       };
+       ///
+       typedef std::map<string, dep_info> DepList;
        ///
        DepList deplist;
 };