X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeXFeatures.h;h=bcf1ed43b82b618701684c670579ed40e48f4b69;hb=a01ff241e2b9e9894fe2d8942b3b00fa380f939b;hp=fa64d8f7fbcd6ac79cc6c9f1c865f5ad75359f96;hpb=a5263e0f927034885870a65053ef3908d1c6f885;p=lyx.git diff --git a/src/LaTeXFeatures.h b/src/LaTeXFeatures.h index fa64d8f7fb..bcf1ed43b8 100644 --- a/src/LaTeXFeatures.h +++ b/src/LaTeXFeatures.h @@ -66,8 +66,10 @@ public: void showStruct() const; /// void addPreambleSnippet(std::string const &); - /// Provide a string name-space to the requirements + /// Add a feature name requirements void require(std::string const & name); + /// Add a set of feature names requirements + void require(std::set const & names); /// Which of the required packages are installed? static void getAvailable(); /// Is the (required) package available? @@ -80,7 +82,7 @@ public: */ bool mustProvide(std::string const & name) const; /// - void useFloat(std::string const & name); + void useFloat(std::string const & name, bool subfloat = false); /// void useLanguage(Language const *); /// @@ -105,22 +107,24 @@ public: private: std::list usedLayouts_; - /// Static preamble bits from the external material insets - typedef std::list FeaturesList; + /// The features that are needed by the document + typedef std::set Features; /// - FeaturesList features_; + Features features_; + /// Static preamble bits from the external material insets + typedef std::list SnippetList; /// - FeaturesList preamble_snippets_; + SnippetList preamble_snippets_; /// The available (required) packages - typedef std::list PackagesList; + typedef std::set Packages; /// - static PackagesList packages_; + static Packages packages_; /// typedef std::set LanguageList; /// used languages (only those that are supported by babel) LanguageList UsedLanguages_; /// - typedef std::set UsedFloats; + typedef std::map UsedFloats; /// UsedFloats usedFloats_; ///