lyx_mirror/src/importer.h
Jean-Marc Lasgouttes e464398e44 remove all traces of #pragma interface/implementation
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9357 a592a061-630c-0410-9148-cb99ea01b6c8
2004-12-07 10:50:09 +00:00

35 lines
499 B
C++

// -*- C++ -*-
/**
* \file importer.h
* Copyright 1995-2002 the LyX Team
* Read the file COPYING
*
* \author unknown
*/
#ifndef IMPORTER_H
#define IMPORTER_H
#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