mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
638d0581e2
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5239 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlMath.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef CONTROL_MATH_H
|
|
#define CONTROL_MATH_H
|
|
|
|
extern char const * function_names[];
|
|
extern int const nr_function_names;
|
|
extern char const * latex_arrow[];
|
|
extern int const nr_latex_arrow;
|
|
extern char const * latex_bop[];
|
|
extern int const nr_latex_bop;
|
|
extern char const * latex_brel[];
|
|
extern int const nr_latex_brel;
|
|
extern char const * latex_dots[];
|
|
extern int const nr_latex_dots;
|
|
extern char const * latex_greek[];
|
|
extern int const nr_latex_greek;
|
|
extern char const * latex_deco[];
|
|
extern int const nr_latex_deco;
|
|
extern char const * latex_misc[];
|
|
extern int const nr_latex_misc;
|
|
extern char const * latex_varsz[];
|
|
extern int const nr_latex_varsz;
|
|
extern char const * latex_ams_misc[];
|
|
extern int const nr_latex_ams_misc;
|
|
extern char const * latex_ams_arrows[];
|
|
extern int const nr_latex_ams_arrows;
|
|
extern char const * latex_ams_rel[];
|
|
extern int const nr_latex_ams_rel;
|
|
extern char const * latex_ams_nrel[];
|
|
extern int const nr_latex_ams_nrel;
|
|
extern char const * latex_ams_ops[];
|
|
extern int const nr_latex_ams_ops;
|
|
|
|
#endif /* CONTROL_MATH_H */
|