]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlex.h
minimal effort implementation of:
[lyx.git] / src / lyxlex.h
index dc16b52b1a7a7a19c3f1764d72dbb123e70c02fa..3dd942eea82c963bfccc5ca9ac5d356d5f382620 100644 (file)
@@ -17,6 +17,8 @@
 #ifndef LYXLEX_H
 #define LYXLEX_H
 
+#include "support/types.h"
+
 #include <boost/utility.hpp>
 
 #include <iosfwd>
@@ -100,6 +102,9 @@ public:
        ///
        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
@@ -140,6 +145,10 @@ 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:
        class Pimpl;
        ///