gehe zur Dokumentation dieser Datei00001
00023
00024
00025
00026
00027 #ifndef GSP_H
00028 #define GSP_H
00029
00030 #include "Frac.h"
00031
00032
00033
00034 #ifndef WX
00035 #define GSP_MAX_SEP 8000 // maximal length of a comment
00036 #define GSP_MAX_LINE 1000 // maximal length of a line
00037 #endif
00038
00039 extern int GspCurrentLineNr;
00040
00041 extern int GspErrorLineNr;
00042
00043 extern int GspErrorPos;
00044
00045 extern mutString GspErrorLine;
00046
00047 extern int GspError;
00048
00049 #ifdef WX
00050 extern mutString Sep;
00051
00052 #else
00053 extern char[GSP_MAX_SEP];
00054
00055 extern int SepPos;
00056
00057 #endif
00058
00059 extern const mutTranslationChar *GspErrorText[];
00060
00061 int GspParse(const mutString &FileName);
00062
00063
00064
00065 #include "GIS.h"
00066 #endif
00067
00068