X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDepTable.h;h=a094fb9adabb2eedd05c6af9beb15add9a6b96f8;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=f74e8cbec03bfb8464e45c34887ffedf81e7b813;hpb=eb36b71ce3b9880a9b577f3db25d16e6a86cd338;p=lyx.git diff --git a/src/DepTable.h b/src/DepTable.h index f74e8cbec0..a094fb9ada 100644 --- a/src/DepTable.h +++ b/src/DepTable.h @@ -16,6 +16,9 @@ #include #include + +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