X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=8791434719be801193b88ef3f47626b0d1a955cb;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=a505e44f4a47af5117e2d05cc20ed2cd35d9ca8f;hpb=8aff605caefaba655e48bc629ed344bb74bcd61a;p=lyx.git diff --git a/src/importer.h b/src/importer.h index a505e44f4a..8791434719 100644 --- a/src/importer.h +++ b/src/importer.h @@ -1,32 +1,42 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file importer.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ====================================================== */ + * \author unknown + * \author Jean-Marc Lasgouttes + * \author John Levon + * + * Full author contact details are available in file CREDITS. + */ #ifndef IMPORTER_H #define IMPORTER_H -#ifdef __GNUG__ -#pragma interface -#endif +#include +#include -#include "LString.h" + +namespace lyx { class LyXView; +class ErrorList; +class Format; class Importer { public: /// - static - void Import(LyXView * lv, string const & filename, - string const & format); - static - bool IsImportable(string const & format); + static bool Import(LyXView * lv, std::string const & filename, + std::string const & format, ErrorList & errorList); + + /// + static std::vector const GetImportableFormats(); +private: + /// + static std::vector const Loaders(); }; + +} // namespace lyx + #endif