X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FPDFOptions.h;h=4ab0d9e3ad7488c52d8f1d0943b5533e992894e6;hb=fbc64ea7ee115bdc4a55c214f28de2166d71f6a2;hp=187e80c25fe5a6ee97cab9d94560c47f0bfa62f3;hpb=308e2d9df338cb54b6e94c93debe03eaeba6522e;p=lyx.git diff --git a/src/PDFOptions.h b/src/PDFOptions.h index 187e80c25f..4ab0d9e3ad 100644 --- a/src/PDFOptions.h +++ b/src/PDFOptions.h @@ -12,13 +12,13 @@ #ifndef PDFOPTIONS_H #define PDFOPTIONS_H -#include "support/strfwd.h" - #include namespace lyx { class Lexer; +class OutputParams; +class otexstream; // FIXME UNICODE // Write functions need to use odostream instead of ostream before @@ -34,7 +34,8 @@ public: /// output to lyx header void writeFile(std::ostream &) const; /// output to tex header - void writeLaTeX(odocstream &, bool hyperref_already_provided) const; + void writeLaTeX(OutputParams &, otexstream &, + bool hyperref_already_provided) const; /// read tokens from lyx header std::string readToken(Lexer &lex, std::string const & token); /// set implicit settings for hyperref @@ -138,15 +139,7 @@ public: * Returns repaired string. For the time being only newlines * are checked. */ - std::string quoted_options_check(std::string const str) const; - - - /** - * Flag indicating whether user made some input into PDF preferences. - * We want to save options, when user decide to switch off PDF support - * for a while. - */ - bool store_options; + std::string quoted_options_check(std::string const & str) const; }; } // namespace lyx