Line | |
---|
1 | //FloatParser.h |
---|
2 | |
---|
3 | #ifndef _FloatParser_H__ |
---|
4 | #define _FloatParser_H__ |
---|
5 | |
---|
6 | #include "UtilPrereqs.h" |
---|
7 | |
---|
8 | //Endzeichen für float expression: ')', '}', ']', ',', ';' |
---|
9 | _UtilExport bool parse_float(char* const, char**, double*); |
---|
10 | //Endzeichen angegeben |
---|
11 | _UtilExport bool parse_float(char* const, char**, char, double*); |
---|
12 | //Letzter Teil-float eines Vektors parsen (keine Vergleichs- und Logikoperationen) |
---|
13 | _UtilExport bool parse_vector_float(char* const, char**, bool, double*); |
---|
14 | |
---|
15 | #endif /* _FloatParser_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.