This commit was manufactured by cvs2svn to create tag
[lyx.git] / src / ImportLaTeX.h
blobf8e029ee3f7a28130529073043fe3f3554440c75
1 // -*- C++ -*-
2 /* This file is part of
3 * ======================================================
4 *
5 * LyX, The Document Processor
7 * Copyright (C) 1995-1998 The LyX Team.
9 * This file is Copyright (C) 1998
10 * Asger Alstrup
12 *======================================================
15 #ifndef _IMPORTLATEX_H
16 #define _IMPORTLATEX_H
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
22 #include "LString.h"
24 class Buffer;
26 ///
27 class ImportLaTeX {
28 public:
29 /**
30 file = name and path of the latex file
32 ImportLaTeX(string const & file);
34 /** Imports the document.
35 Return 0 if fail.
37 Buffer * run();
38 private:
39 ///
40 string file;
43 #endif