]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
Support for \begin{math}
[lyx.git] / src / DepTable.h
index f19599962933c6726e1296ef0a3af6c9b408705e..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
  *
  * ====================================================== 
@@ -17,8 +17,6 @@
 
 #include "LString.h"
 #include <map>
-using std::map;
-using std::pair;
 
 #ifdef __GNUG__
 #pragma interface
@@ -53,7 +51,13 @@ public:
        void remove_files_with_extension(string const &);
 private:
        ///
-       typedef map<string, 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;
 };