lyx_mirror/src/ImportLaTeX.h
Lars Gullik Bjønnes 0eccdd1c36 merge from the string-switch branch and ready for a prelease.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@162 a592a061-630c-0410-9148-cb99ea01b6c8
1999-10-02 16:21:10 +00:00

44 lines
694 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright (C) 1995-1998 The LyX Team.
*
* This file is Copyright (C) 1998
* Asger Alstrup
*
*======================================================
*/
#ifndef _IMPORTLATEX_H
#define _IMPORTLATEX_H
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
class Buffer;
///
class ImportLaTeX {
public:
/**
file = name and path of the latex file
*/
ImportLaTeX(string const & file);
/** Imports the document.
Return 0 if fail.
*/
Buffer * run();
private:
///
string file;
};
#endif