]> git.lyx.org Git - lyx.git/blob - src/importer.h
include sys/time.h
[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 #include <vector>
14 #include "LString.h"
15
16 class LyXView;
17 class Format;
18
19 class Importer {
20 public:
21         ///
22         static
23         bool Import(LyXView * lv, string const & filename,
24                     string const & format);
25
26         ///
27         static
28         std::vector<Format const *> const GetImportableFormats();
29 private:
30         ///
31         static
32         std::vector<string> const Loaders();
33 };
34 #endif