X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FOutputParams.h;h=5f57ac1f830a2509b96746e019ea6a0eb907e1f5;hb=55a3dd7b346d29a52ba305a4558e9e380ef50f47;hp=c9129eae3e9dd1d805ccb5d719c884e8d4a52d0d;hpb=8c61911270d9e5f542fcb916deab50659eee9115;p=lyx.git diff --git a/src/OutputParams.h b/src/OutputParams.h index c9129eae3e..5f57ac1f83 100644 --- a/src/OutputParams.h +++ b/src/OutputParams.h @@ -28,6 +28,7 @@ class Language; class OutputParams { public: enum FLAVOR { + DVILUATEX, LATEX, LUATEX, PDFLATEX, @@ -218,6 +219,12 @@ public: */ mutable pit_type par_end; + /// Id of the last paragraph before an inset + mutable int lastid; + + /// Last position in the last paragraph before an inset + mutable int lastpos; + /// is this the last paragraph in the current buffer/inset? bool isLastPar; @@ -244,6 +251,9 @@ public: /// Include all children notwithstanding the use of \includeonly bool includeall; + + /// Explicit output folder, if any is desired + std::string export_folder; };