X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=634059d5f0bc717dbaad01c7fc198e8d1c93cdfa;hb=67ae65f43093cc738e41607c8a5011854d47cbf9;hp=4eca7c06f9cd1db941dc073e953637de6c96b790;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/importer.h b/src/importer.h index 4eca7c06f9..634059d5f0 100644 --- a/src/importer.h +++ b/src/importer.h @@ -14,25 +14,31 @@ #ifndef IMPORTER_H #define IMPORTER_H +#include #include -#include "LString.h" + + +namespace lyx { + +namespace support { class FileName; } class LyXView; +class ErrorList; class Format; class Importer { public: /// - static - bool Import(LyXView * lv, string const & filename, - 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