X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fexporter.h;h=ec1c9d6495fdbae61cce1e21eee08f82de6a42e8;hb=7aa50e8f2bc942e4bb3d7a45e62fdfbe6a21654e;hp=cf6551ed87a662a995cea861ccfba6ec1f406474;hpb=3b9338a3a8ba33fbbdf2c77cbffb3ff50d8fad86;p=lyx.git diff --git a/src/exporter.h b/src/exporter.h index cf6551ed87..ec1c9d6495 100644 --- a/src/exporter.h +++ b/src/exporter.h @@ -18,6 +18,9 @@ #include +namespace lyx { + + class Buffer; class Format; @@ -33,14 +36,14 @@ public: bool put_in_tempdir); /// static - bool Preview(Buffer * buffer, std::string const & format); + bool preview(Buffer * buffer, std::string const & format); /// static - bool IsExportable(Buffer const & buffer, std::string const & format); + bool isExportable(Buffer const & buffer, std::string const & format); /// static std::vector const - GetExportableFormats(Buffer const & buffer, bool only_viewable); + getExportableFormats(Buffer const & buffer, bool only_viewable); /// }; @@ -93,4 +96,7 @@ private: FileMap externalfiles; }; + +} // namespace lyx + #endif