]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
get builddir!=srcdir compiling working; allow successful make even without noweb...
[lyx.git] / src / DepTable.h
index 784c04a8a254a5ba3df0fda6b8a4cef548bbe69a..675191b08dd100f2ce331e1c520f9f6cba87890d 100644 (file)
@@ -3,9 +3,10 @@
  * ====================================================== 
  * 
  *           LyX, The Document Processor
- *          Copyright (C) 1995 Matthias Ettrich
+ *          Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
  *        
- *           This file is Copyright (C) 1996-1998
+ *           This file is Copyright 1996-2000
  *           Lars Gullik Bjønnes
  *
  * ====================================================== 
@@ -16,8 +17,6 @@
 
 #include "LString.h"
 #include <map>
-using std::map;
-using std::pair;
 
 #ifdef __GNUG__
 #pragma interface
@@ -52,7 +51,8 @@ public:
        void remove_files_with_extension(string const &);
 private:
        ///
-       typedef map<string, pair<unsigned long, unsigned long> > DepList;
+       typedef std::map<string,
+               std::pair<unsigned long, unsigned long> > DepList;
        ///
        DepList deplist;
 };