]> git.lyx.org Git - lyx.git/blob - src/buffer_funcs.h
changelogs
[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 <string>
16
17
18 class Buffer;
19 class TeXErrors;
20 class ErrorList;
21
22 /**
23  *  Loads a LyX file \c filename into \c Buffer
24  *  and \return success status.
25  */
26 bool loadLyXFile(Buffer *, std::string const & filename);
27
28 /* Make a new file (buffer) with name \c filename based on a template
29  * named \c templatename
30  */
31 Buffer * newFile(std::string const & filename, std::string const & templatename,
32                  bool isNamed = false);
33
34 ///return the format of the buffer on a string
35 std::string const BufferFormat(Buffer const & buffer);
36 ///
37 void bufferErrors(Buffer const &, TeXErrors const &);
38 ///
39 void bufferErrors(Buffer const &, ErrorList const &);
40
41 #endif // BUFFER_FUNCS_H