]> git.lyx.org Git - lyx.git/blobdiff - src/ModuleList.h
listerrors.lyx : Update a link.
[lyx.git] / src / ModuleList.h
index c9a6f1f4d7effbf8068206bd2fd281b02621de60..d3abef913a5450830365451e6f71c1f5697ed099 100644 (file)
@@ -58,6 +58,8 @@ public:
                  std::string const & catgy);
        /// whether the required packages are available
        bool isAvailable() const;
+       /// the missing prerequisites, if any
+       std::vector<std::string> prerequisites() const;
        ///
        std::string const & getName() const { return name_; }
        ///
@@ -108,6 +110,8 @@ private:
        mutable bool checked_;
        ///
        mutable bool available_;
+       ///
+       mutable std::vector<std::string> prerequisites_;
 };
 
 typedef std::vector<LyXModule> LyXModuleList;