]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Do not overwrite read-only files. We now move the file to the backup directory and...
[lyx.git] / src / OutputParams.h
index 6653a41a0fd4b12d68ca2c051395317a9446c8e1..82e2c68d6b264edb7d69b2c0d4ac4d711a48fdc5 100644 (file)
@@ -29,6 +29,7 @@ class OutputParams {
 public:
        enum FLAVOR {
                LATEX,
+               LUATEX,
                PDFLATEX,
                XETEX,
                XML,
@@ -65,6 +66,8 @@ public:
        FLAVOR flavor;
        /// is it some flavor of LaTeX?
        bool isLaTeX() const;
+       /// does this flavour support full unicode?
+       bool isFullUnicode() const;
        
        /// Same, but for math output, which only matter is XHTML output.
        MathFlavor math_flavor;