]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Move #includes out of header files.
[lyx.git] / src / LaTeXFeatures.h
index b95c8e411520158ffd85511f29445e9c858a5c2f..0f05c6f178ec7a346b2fc7694a42da7c2c0031c3 100644 (file)
@@ -1,13 +1,14 @@
 // -*- C++ -*-
-/* This file is part of
-* ======================================================
-*
-*           LyX, The Document Processor
-*
-*           Copyright 1995 Matthias Ettrich
-*           Copyright 1995-2001 the LyX Team.
-*
-* ====================================================== */
+/**
+ * \file LaTeXFeatures.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LATEXFEATURES_H
 #define LATEXFEATURES_H
@@ -78,20 +79,19 @@ public:
        void useLayout(string const & lyt);
        ///
        BufferParams const & bufferParams() const;
-       ///
+       /// the return value is dependent upon both LyXRC and LaTeXFeatures.
+       bool useBabel() const;
 
 private:
-       string externalPreambles;
-
        std::list<string> usedLayouts;
 
        /// Static preamble bits from the external material insets
-
-
        typedef std::list<string> FeaturesList;
        ///
        FeaturesList features;
        ///
+       FeaturesList preamble_snippets;
+       ///
        typedef std::set<Language const *> LanguageList;
        ///
        LanguageList UsedLanguages;