X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fimporter.h;h=8791434719be801193b88ef3f47626b0d1a955cb;hb=6c300f72a217722652dc27db9108e1050028979c;hp=012a9c65666265045fa88133c480964aeb3a5644;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/importer.h b/src/importer.h index 012a9c6566..8791434719 100644 --- a/src/importer.h +++ b/src/importer.h @@ -14,25 +14,29 @@ #ifndef IMPORTER_H #define IMPORTER_H +#include #include +namespace lyx { + 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, std::string 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