]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
move some selection related stuff over to textcursor.C
[lyx.git] / src / buffer_funcs.h
index dc6a440b76fbaa825f686f30cdb6e062a60de3c3..372d99daea1fdf1fbc0cd029c29f2ef71d1187e0 100644 (file)
@@ -9,9 +9,14 @@
  * Full author contact details are available in file CREDITS
  */
 
+#ifndef BUFFER_FUNCS_H
+#define BUFFER_FUNCS_H
+
 #include "LString.h"
 
 class Buffer;
+class TeXErrors;
+class ErrorList;
 
 /**
  *  Loads a LyX file \c filename into \c Buffer 
@@ -24,3 +29,12 @@ bool loadLyXFile(Buffer *, string const & filename);
  */
 Buffer * newFile(string const & filename, string const & templatename, 
                 bool isNamed = false);
+
+///return the format of the buffer on a string
+string const BufferFormat(Buffer const & buffer);
+
+void parseErrors(Buffer const &, TeXErrors const &);
+
+void parseErrors(Buffer const &, ErrorList const &);
+
+#endif // BUFFER_FUNCS_H