X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=7d62799cabd20e6034281f3c9069b3bdd7d1f55c;hb=37e82a546392d43f787826b85481a11f2a27af15;hp=8bcfd08140681864ca68b25d76592397e6b93bf5;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/importer.h b/src/importer.h index 8bcfd08140..7d62799cab 100644 --- a/src/importer.h +++ b/src/importer.h @@ -1,23 +1,22 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file importer.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author unknown + * \author Jean-Marc Lasgouttes + * \author John Levon * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * 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" + class LyXView; class Format; @@ -26,19 +25,15 @@ class Importer { public: /// static - bool Import(LyXView * lv, string const & filename, - string const & format); -#if 0 - /// - static - bool IsImportable(string const & format); -#endif + bool Import(LyXView * lv, std::string const & filename, + std::string const & format); + /// static std::vector const GetImportableFormats(); private: /// static - std::vector const Loaders(); + std::vector const Loaders(); }; #endif