]> git.lyx.org Git - lyx.git/blob - src/importer.h
Support lgathered and rgathered math environments
[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 <string>
18 #include <vector>
19
20
21 class LyXView;
22 class ErrorList;
23 class Format;
24
25 class Importer {
26 public:
27         ///
28         static
29         bool Import(LyXView * lv, std::string const & filename,
30                     std::string const & format, ErrorList & errorList);
31
32         ///
33         static
34         std::vector<Format const *> const GetImportableFormats();
35 private:
36         ///
37         static
38         std::vector<std::string> const Loaders();
39 };
40 #endif