]> git.lyx.org Git - lyx.git/blob - src/importer.h
012a9c65666265045fa88133c480964aeb3a5644
[lyx.git] / src / importer.h
1 // -*- C++ -*-
2 /**
3  * \file importer.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef IMPORTER_H
15 #define IMPORTER_H
16
17 #include <vector>
18
19
20 class LyXView;
21 class Format;
22
23 class Importer {
24 public:
25         ///
26         static
27         bool Import(LyXView * lv, std::string const & filename,
28                     std::string const & format);
29
30         ///
31         static
32         std::vector<Format const *> const GetImportableFormats();
33 private:
34         ///
35         static
36         std::vector<std::string> const Loaders();
37 };
38 #endif