]> git.lyx.org Git - lyx.git/blob - src/ImportLaTeX.h
white-space changes, removed definitions.h several enum changes because of this,...
[lyx.git] / src / ImportLaTeX.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright (C) 1995-1998 The LyX Team.
8  *
9  *           This file is Copyright (C) 1998
10  *           Asger Alstrup
11  *
12  * ======================================================
13  */
14
15 #ifndef IMPORTLATEX_H
16 #define IMPORTLATEX_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22 #include "LString.h"
23
24 class Buffer;
25
26 ///
27 class ImportLaTeX {
28 public:
29         /**
30           file = name and path of the latex file
31           */
32         ImportLaTeX(string const & file);
33         
34         /** Imports the document.
35           Return 0 if fail.
36           */
37         Buffer * run();
38 private:
39         ///
40         string file;
41 };
42
43 #endif