]>
Commit | Line | Data |
---|---|---|
9a29912f JS |
1 | /* |
2 | * File: maths.cc | |
3 | * Purpose: Beginnings of a maths parser for LaTeX. | |
4 | * NOT IMPLEMENTED. I'm still thinking how best to do this... | |
5 | * | |
6 | */ | |
7 | ||
8 | // For compilers that support precompilation, includes "wx.h". | |
ea07c87a | 9 | #ifdef WX_PRECOMP |
9a29912f | 10 | #include "wx_prec.h" |
ea07c87a | 11 | #endif |
9a29912f JS |
12 | |
13 | #ifdef __BORLANDC__ | |
14 | #pragma hdrstop | |
15 | #endif | |
16 | ||
17 | #ifndef WX_PRECOMP | |
ea07c87a | 18 | #include <wx/wx.h> |
9a29912f JS |
19 | #endif |
20 | ||
21 | #include <ctype.h> | |
22 | #include "tex2any.h" | |
23 | #include <stdlib.h> | |
24 | #include <time.h> | |
25 |