X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=634059d5f0bc717dbaad01c7fc198e8d1c93cdfa;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=7d62799cabd20e6034281f3c9069b3bdd7d1f55c;hpb=eb36b71ce3b9880a9b577f3db25d16e6a86cd338;p=lyx.git diff --git a/src/importer.h b/src/importer.h index 7d62799cab..634059d5f0 100644 --- a/src/importer.h +++ b/src/importer.h @@ -18,22 +18,27 @@ #include +namespace lyx { + +namespace support { class FileName; } + class LyXView; +class ErrorList; class Format; class Importer { public: /// - static - bool Import(LyXView * lv, std::string const & filename, - std::string const & format); + static bool Import(LyXView * lv, support::FileName const & filename, + std::string const & format, ErrorList & errorList); /// - static - std::vector const GetImportableFormats(); + static std::vector const GetImportableFormats(); private: /// - static - std::vector const Loaders(); + static std::vector const Loaders(); }; + +} // namespace lyx + #endif