summaryrefslogtreecommitdiffstats
path: root/src/constexp.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-06 19:57:02 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-02-06 20:26:55 (GMT)
commit38fdb5cf1193c792153c139800c92c37a555f9d1 (patch)
tree6ad236162bfec727bab18f1e254642cb8b3fc15d /src/constexp.h
parent0c612fec125124a062b1ba26244631e334e328b7 (diff)
downloadDoxygen-38fdb5cf1193c792153c139800c92c37a555f9d1.zip
Doxygen-38fdb5cf1193c792153c139800c92c37a555f9d1.tar.gz
Doxygen-38fdb5cf1193c792153c139800c92c37a555f9d1.tar.bz2
Refactoring: replace QCString with std::string in constexp
Diffstat (limited to 'src/constexp.h')
-rw-r--r--src/constexp.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/constexp.h b/src/constexp.h
index 0b52e14..212387b 100644
--- a/src/constexp.h
+++ b/src/constexp.h
@@ -1,13 +1,10 @@
/******************************************************************************
*
- *
- *
- *
- * Copyright (C) 1997-2015 by Dimitri van Heesch.
+ * Copyright (C) 1997-2021 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
- * documentation under the terms of the GNU General Public License is hereby
- * granted. No representations are made about the suitability of this software
+ * documentation under the terms of the GNU General Public License is hereby
+ * granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
@@ -19,14 +16,14 @@
#ifndef _CONSTEXP_H
#define _CONSTEXP_H
-#include <qcstring.h>
+#include <string>
class ConstExpressionParser
{
public:
ConstExpressionParser();
~ConstExpressionParser();
- bool parse(const char *fileName,int line,const QCString &expression);
+ bool parse(const char *fileName,int line,const std::string &expression);
private:
struct Private;
Private *p;