2003-08-19 13:00:56 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file math_factory.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-08-13 14:19:16 +00:00
|
|
|
|
#ifndef MATH_FACTORY_H
|
|
|
|
|
#define MATH_FACTORY_H
|
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_string.h"
|
2001-08-15 05:50:39 +00:00
|
|
|
|
|
2003-03-04 16:39:13 +00:00
|
|
|
|
class MathAtom;
|
|
|
|
|
class MathArray;
|
2001-08-13 14:19:16 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom createMathInset(string const &);
|
2001-08-13 14:19:16 +00:00
|
|
|
|
|
2003-03-04 16:39:13 +00:00
|
|
|
|
/** Fills ar with the contents of str.
|
|
|
|
|
* str is created by the frontend dialog's and returned to the LyX core.
|
|
|
|
|
* The function returns true if successful.
|
|
|
|
|
*/
|
|
|
|
|
bool createMathInset_fromDialogStr(string const &, MathArray &);
|
|
|
|
|
|
2001-08-13 14:19:16 +00:00
|
|
|
|
#endif
|