mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
0c2a3e5960
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2118 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
912 B
C++
40 lines
912 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file MathsSymbols.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author John Levon
|
|
*/
|
|
|
|
#ifndef MATHS_SYMBOLS_H
|
|
#define MATHS_SYMBOLS_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "bmtable.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_misc[];
|
|
extern int const nr_latex_misc;
|
|
extern char const * latex_varsz[];
|
|
extern int const nr_latex_varsz;
|
|
|
|
char const ** get_pixmap_from_symbol(char const *, int, int);
|
|
|
|
#endif /* MATHS_SYMBOLS_H */
|