]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlex.h
minimal effort implementation of:
[lyx.git] / src / lyxlex.h
index 41da5297898f521ada2011e0e6a43def3d9b9df3..3dd942eea82c963bfccc5ca9ac5d356d5f382620 100644 (file)
@@ -17,6 +17,8 @@
 #ifndef LYXLEX_H
 #define LYXLEX_H
 
+#include "support/types.h"
+
 #include <boost/utility.hpp>
 
 #include <iosfwd>
@@ -96,10 +98,13 @@ public:
        ///
        bool getBool() const;
        ///
-       float getFloat() const;
+       double getFloat() const;
        ///
        std::string const getString() const;
 
+       ///
+       lyx::docstring const getDocString() const;
+
        /** Get a long string, ended by the tag `endtag'.
            This string can span several lines. The first line
            serves as a template for how many spaces the lines
@@ -111,8 +116,6 @@ public:
 
        ///
        bool eatLine();
-       ///
-       int findToken(char const * str[]);
 
        /// Pushes a token list on a stack and replaces it with a new one.
        void pushTable(keyword_item *, int);
@@ -133,8 +136,6 @@ public:
 
        /// extract string
        LyXLex & operator>>(std::string &);
-       /// extract float
-       LyXLex & operator>>(float &);
        /// extract double
        LyXLex & operator>>(double &);
        /// extract integer
@@ -144,8 +145,12 @@ public:
        /// extract bool
        LyXLex & operator>>(bool &);
 
+       /// Quotes a string so that reading it again with LyXLex::next(true)
+       /// gets the original string
+       static std::string const quoteString(std::string const &);
+
 private:
-       struct Pimpl;
+       class Pimpl;
        ///
        Pimpl * pimpl_;
 };
@@ -155,9 +160,10 @@ private:
     This is needed to ensure that the pop is done upon exit from methods
     with more than one exit point or that can return as a response to
     exceptions.
-    @autor Lgb
+    @author Lgb
 */
-struct pushpophelper {
+class pushpophelper {
+public:
        ///
        pushpophelper(LyXLex & lexrc, keyword_item * i, int s) : lex(lexrc) {
                lex.pushTable(i, s);