]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
The logic of the endParagraph() routine is wrong. We should first
[lyx.git] / src / OutputParams.h
index 50009ebbbcf6461b261188bbcb29c16a93cdde51..15736f667da4a11fc884036bcc92d3276f83a7b9 100644 (file)
@@ -28,6 +28,7 @@ class Language;
 class OutputParams {
 public:
        enum FLAVOR {
+               DVILUATEX,
                LATEX,
                LUATEX,
                PDFLATEX,
@@ -197,6 +198,11 @@ public:
         */
        bool inIndexEntry;
 
+       /** Whether we are inside an IPA inset.
+        *  Needed for proper IPA output.
+        */
+       bool inIPA;
+
        /** Whether we are inside an inset that is logically deleted.
         *  A value > 0 indicates a deleted inset.
          */
@@ -250,6 +256,9 @@ public:
        
        /// Include all children notwithstanding the use of \includeonly
        bool includeall;
+
+       /// Explicit output folder, if any is desired
+       std::string export_folder;
 };