X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=634059d5f0bc717dbaad01c7fc198e8d1c93cdfa;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=b63358de30346277b8b5b1d19bf31a8c8cc50589;hpb=c5a4f61f3377997a4b793481bd30a1a8e0627b86;p=lyx.git diff --git a/src/importer.h b/src/importer.h index b63358de30..634059d5f0 100644 --- a/src/importer.h +++ b/src/importer.h @@ -18,6 +18,10 @@ #include +namespace lyx { + +namespace support { class FileName; } + class LyXView; class ErrorList; class Format; @@ -25,16 +29,16 @@ class Format; class Importer { public: /// - static - bool Import(LyXView * lv, std::string const & filename, + 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