aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangrefactoring/clangquerytexteditorwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/clangrefactoring/clangquerytexteditorwidget.h')
-rw-r--r--src/plugins/clangrefactoring/clangquerytexteditorwidget.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/clangrefactoring/clangquerytexteditorwidget.h b/src/plugins/clangrefactoring/clangquerytexteditorwidget.h
index 85dace14323..a221eb03fe0 100644
--- a/src/plugins/clangrefactoring/clangquerytexteditorwidget.h
+++ b/src/plugins/clangrefactoring/clangquerytexteditorwidget.h
@@ -27,9 +27,12 @@
#include "baseclangquerytexteditorwidget.h"
+#include <memory>
+
namespace ClangRefactoring {
class ClangQueryHighlighter;
+class ClangQueryHoverHandler;
class ClangQueryTextEditorWidget : public BaseClangQueryTextEditorWidget
{
@@ -37,11 +40,13 @@ class ClangQueryTextEditorWidget : public BaseClangQueryTextEditorWidget
public:
ClangQueryTextEditorWidget(QWidget *parent);
+ ~ClangQueryTextEditorWidget();
ClangQueryHighlighter *syntaxHighlighter() const;
private:
ClangQueryHighlighter *m_syntaxHighlighter;
+ std::unique_ptr<ClangQueryHoverHandler> m_hoverHandler;
};
} // namespace ClangRefactoring