lyx_mirror/src/importer.h
Jean-Marc Lasgouttes 8aff605cae Dekel's import/export patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1144 a592a061-630c-0410-9148-cb99ea01b6c8
2000-10-23 12:16:05 +00:00

33 lines
619 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
* ====================================================== */
#ifndef IMPORTER_H
#define IMPORTER_H
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
class LyXView;
class Importer {
public:
///
static
void Import(LyXView * lv, string const & filename,
string const & format);
static
bool IsImportable(string const & format);
};
#endif