summaryrefslogtreecommitdiffstats
path: root/src/clangparser.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-04 20:14:49 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-04 20:14:49 (GMT)
commitbb89b8136ff835c8fbd9f313d58815c8f361dff9 (patch)
tree6b1c4c7895ce43a44539317a555e263683735f8d /src/clangparser.h
parent29ea1e8227b3e892e7124c8cd8b5f2b8be81a058 (diff)
downloadDoxygen-bb89b8136ff835c8fbd9f313d58815c8f361dff9.zip
Doxygen-bb89b8136ff835c8fbd9f313d58815c8f361dff9.tar.gz
Doxygen-bb89b8136ff835c8fbd9f313d58815c8f361dff9.tar.bz2
Refactoring: some cleanup and removed text direction logic
Diffstat (limited to 'src/clangparser.h')
-rw-r--r--src/clangparser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clangparser.h b/src/clangparser.h
index 83aafdd..71a79d5 100644
--- a/src/clangparser.h
+++ b/src/clangparser.h
@@ -1,10 +1,10 @@
#ifndef CLANGPARSER_H
#define CLANGPARSER_H
-#include <qcstring.h>
-#include <qstrlist.h>
#include "containers.h"
+#include "types.h"
#include <memory>
+#include <string>
class CodeOutputInterface;
class FileDef;
@@ -40,7 +40,7 @@ class ClangTUParser
/** Looks for \a symbol which should be found at \a line.
* returns a clang unique reference to the symbol.
*/
- QCString lookup(uint line,const char *symbol);
+ std::string lookup(uint line,const char *symbol);
/** writes the syntax highlighted source code for a file
* @param[out] ol The output generator list to write to.