]> git.lyx.org Git - lyx.git/blob - src/latexrunparams.h
initialize all vars
[lyx.git] / src / latexrunparams.h
1 // -*- C++ -*-
2 /**
3  * \file latexrunparams.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  *  \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef LatexRunParams_H
13 #define LatexRunParams_H
14
15 /** The latex that we export depends occasionally on what is to
16     compile the file.
17 */
18 struct LatexRunParams {
19         enum FLAVOR {
20                 LATEX,
21                 PDFLATEX
22         };
23
24         LatexRunParams() : flavor(LATEX) {}
25         //, nice(false), fragile(false) {}
26
27         FLAVOR flavor;
28 //         bool nice;
29 //         bool fragile;
30 };
31
32 // enum LatexFlavor {
33 //      LATEX_FLAVOR,
34 //      PDFLATEX_FLAVOR
35 // };
36
37 #endif // LatexRunParams_H