]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
hopefully fix tex2lyx linking.
[lyx.git] / src / DepTable.h
index f74e8cbec03bfb8464e45c34887ffedf81e7b813..a094fb9adabb2eedd05c6af9beb15add9a6b96f8 100644 (file)
@@ -16,6 +16,9 @@
 #include <map>
 #include <string>
 
+
+namespace lyx {
+
 ///
 class DepTable {
 public:
@@ -46,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.
@@ -62,4 +66,7 @@ private:
        DepList deplist;
 };
 
+
+} // namespace lyx
+
 #endif