]> git.lyx.org Git - features.git/blobdiff - src/LaTeXFeatures.h
Replace LString.h with support/std_string.h,
[features.git] / src / LaTeXFeatures.h
index 6cf6c8d159f968e9f8245cb13effe3a21391592a..d882bc4013fd127a33eab82a6b621fd614e1b99a 100644 (file)
@@ -1,20 +1,21 @@
 // -*- 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
 
 #include "support/types.h"
 
-#include "LString.h"
+#include "support/std_string.h"
 
 #include <set>
 #include <list>
@@ -82,17 +83,15 @@ public:
        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;