]> git.lyx.org Git - lyx.git/blob - src/importer.h
couple more fixes
[lyx.git] / src / importer.h
1 // -*- C++ -*-
2 /**
3  * \file importer.h
4  * Copyright 1995-2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author unknown
8  */
9
10 #ifndef IMPORTER_H
11 #define IMPORTER_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include <vector>
18 #include "LString.h"
19
20 class LyXView;
21 class Format;
22
23 class Importer {
24 public:
25         ///
26         static
27         bool Import(LyXView * lv, string const & filename,
28                     string const & format);
29
30         ///
31         static
32         std::vector<Format const *> const GetImportableFormats();
33 private:
34         ///
35         static
36         std::vector<string> const Loaders();
37 };
38 #endif