]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
hopefully fix tex2lyx linking.
[lyx.git] / src / DepTable.h
index 6148f67736507a140c768734bf38d61d91a45ba8..a094fb9adabb2eedd05c6af9beb15add9a6b96f8 100644 (file)
 #define DEP_TABLE_H
 
 #include <map>
+#include <string>
+
+
+namespace lyx {
 
 ///
 class DepTable {
@@ -45,7 +49,8 @@ public:
        void remove_file(std::string const &);
 private:
        ///
-       struct dep_info {
+       class dep_info {
+       public:
                /// Previously calculated CRC value
                unsigned long crc_prev;
                /// Current CRC value - only re-computed if mtime has changed.
@@ -61,4 +66,7 @@ private:
        DepList deplist;
 };
 
+
+} // namespace lyx
+
 #endif