X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=634059d5f0bc717dbaad01c7fc198e8d1c93cdfa;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=012a9c65666265045fa88133c480964aeb3a5644;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/importer.h b/src/importer.h index 012a9c6566..634059d5f0 100644 --- a/src/importer.h +++ b/src/importer.h @@ -14,25 +14,31 @@ #ifndef IMPORTER_H #define IMPORTER_H +#include #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