summaryrefslogtreecommitdiffstats
path: root/src/cppvalue.h
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2017-10-27 14:05:10 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-05-04 15:02:02 (GMT)
commit8412f4df29bbaede16a7f38deac363a4fbf81d89 (patch)
tree25b1a80a45606bbfca1eb4a7cdc7ca4ab5fa37ac /src/cppvalue.h
parenta18e967baabf5a9a234627e677d866bcf45741d4 (diff)
downloadDoxygen-8412f4df29bbaede16a7f38deac363a4fbf81d89.zip
Doxygen-8412f4df29bbaede16a7f38deac363a4fbf81d89.tar.gz
Doxygen-8412f4df29bbaede16a7f38deac363a4fbf81d89.tar.bz2
constexp.l,y: generate a reentrant scanner and parser
Diffstat (limited to 'src/cppvalue.h')
-rw-r--r--src/cppvalue.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/cppvalue.h b/src/cppvalue.h
index 59dd594..cde033d 100644
--- a/src/cppvalue.h
+++ b/src/cppvalue.h
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <qglobal.h>
+#include <qcstring.h>
/** A class representing a C-preprocessor value. */
class CPPValue
@@ -52,10 +53,10 @@ class CPPValue
} v;
};
-extern CPPValue parseOctal();
-extern CPPValue parseDecimal();
-extern CPPValue parseHexadecimal();
-extern CPPValue parseCharacter();
-extern CPPValue parseFloat();
+extern CPPValue parseOctal(const QCString& token);
+extern CPPValue parseDecimal(const QCString& token);
+extern CPPValue parseHexadecimal(const QCString& token);
+extern CPPValue parseCharacter(const QCString& token);
+extern CPPValue parseFloat(const QCString& token);
#endif