X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=089e6336b8aad4104f466e9a1feaf714b6bce912;hb=342932ad32b6eb9afc0845717d2e3f25433bb5f1;hp=a505e44f4a47af5117e2d05cc20ed2cd35d9ca8f;hpb=8aff605caefaba655e48bc629ed344bb74bcd61a;p=lyx.git diff --git a/src/importer.h b/src/importer.h index a505e44f4a..089e6336b8 100644 --- a/src/importer.h +++ b/src/importer.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -16,17 +16,29 @@ #pragma interface #endif +#include #include "LString.h" class LyXView; +class Format; class Importer { public: /// static - void Import(LyXView * lv, string const & filename, + bool Import(LyXView * lv, string const & filename, string const & format); +#if 0 + /// static bool IsImportable(string const & format); +#endif + /// + static + std::vector const GetImportableFormats(); +private: + /// + static + std::vector const Loaders(); }; #endif