]> git.lyx.org Git - features.git/blobdiff - src/Format.h
Moving the zipped file info cache to Formats.cpp saves the inclusion of <map> and...
[features.git] / src / Format.h
index 21721fa8e6c10cfcfb1a480b5aaf1c11bbfb06f6..335b484a552b48457a43f94975a86f82a6c03872 100644 (file)
@@ -17,8 +17,6 @@
 #include "OutputParams.h"
 
 #include <vector>
-#include <map>
-#include <ctime>
 
 namespace lyx {
 
@@ -191,14 +189,6 @@ public:
 private:
        ///
        FormatList formatlist;
-       /// Used to store last timestamp of file and whether it is (was) zipped
-       struct ZippedInfo {
-               bool zipped; std::time_t timestamp;
-               ZippedInfo(bool zipped, std::time_t timestamp)
-               : zipped(zipped), timestamp(timestamp) { }
-       };
-       ///
-       mutable std::map<std::string, ZippedInfo> zipped_;
 };
 
 ///