lyx_mirror/src/importer.h
John Levon 50a25e9a76 srcdoc fixes + a little tidy or two
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4288 a592a061-630c-0410-9148-cb99ea01b6c8
2002-05-30 03:37:24 +00:00

39 lines
541 B
C++

// -*- C++ -*-
/**
* \file importer.h
* Copyright 1995-2002 the LyX Team
* Read the file COPYING
*
* \author unknown
*/
#ifndef IMPORTER_H
#define IMPORTER_H
#ifdef __GNUG__
#pragma interface
#endif
#include <vector>
#include "LString.h"
class LyXView;
class Format;
class Importer {
public:
///
static
bool Import(LyXView * lv, string const & filename,
string const & format);
///
static
std::vector<Format const *> const GetImportableFormats();
private:
///
static
std::vector<string> const Loaders();
};
#endif