]> git.lyx.org Git - lyx.git/blobdiff - src/bufferparams.h
Fix my breakage. Sorry guys.
[lyx.git] / src / bufferparams.h
index 89511471141b5fdb87b9843234109a33ca1524c7..87140a7b0bd2cecd8f7abbb1470af6c77d479876 100644 (file)
@@ -34,9 +34,10 @@ class LatexFeatures;
 class Spacing;
 class TexRow;
 class VSpace;
-struct Language;
+class Language;
 
 
+namespace lyx {
 namespace biblio {
 
 enum CiteEngine {
@@ -47,13 +48,14 @@ enum CiteEngine {
 };
 
 class CiteEngine_enum {
-        CiteEngine val_;
+       CiteEngine val_;
 public:
        CiteEngine_enum(CiteEngine val) : val_(val) {}
-        operator CiteEngine() const{ return val_; }
+       operator CiteEngine() const{ return val_; }
 };
 
 } // namespace biblio
+} // namespace lyx
 
 
 /** Buffer parameters.
@@ -189,6 +191,10 @@ public:
        void readLanguage(LyXLex &);
        ///
        void readGraphicsDriver(LyXLex &);
+       ///
+       void readBullets(LyXLex &);
+       ///
+       void readBulletsLaTeX(LyXLex &);
 
        /// use AMS package, not, or auto
        enum AMS {
@@ -198,7 +204,7 @@ public:
        };
        AMS use_amsmath;
        ///
-       biblio::CiteEngine cite_engine;
+       lyx::biblio::CiteEngine cite_engine;
        ///
        bool use_bibtopic;
        /// revision tracking for this buffer ?
@@ -226,7 +232,8 @@ private:
         *  drag in other header files.
         */
        class Impl;
-       struct MemoryTraits {
+       class MemoryTraits {
+       public:
                static Impl * clone(Impl const *);
                static void destroy(Impl *);
        };