]> git.lyx.org Git - lyx.git/blob - src/buffer_funcs.h
Point fix, earlier forgotten
[lyx.git] / src / buffer_funcs.h
1 // -*- C++ -*-
2 /* \file buffer_funcs.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef BUFFER_FUNCS_H
13 #define BUFFER_FUNCS_H
14
15 #include "LString.h"
16
17 class Buffer;
18 class TeXErrors;
19 class ErrorList;
20
21 /**
22  *  Loads a LyX file \c filename into \c Buffer 
23  *  and \return success status.
24  */
25 bool loadLyXFile(Buffer *, string const & filename);
26
27 /* Make a new file (buffer) with name \c filename based on a template
28  * named \c templatename
29  */
30 Buffer * newFile(string const & filename, string const & templatename, 
31                  bool isNamed = false);
32
33 ///return the format of the buffer on a string
34 string const BufferFormat(Buffer const & buffer);
35 ///
36 void bufferErrors(Buffer const &, TeXErrors const &);
37 ///
38 void bufferErrors(Buffer const &, ErrorList const &);
39
40 #endif // BUFFER_FUNCS_H