aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppeditortestcase.h
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2016-03-04 12:43:06 +0100
committerNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2016-03-04 14:22:27 +0000
commit2b2ba298f3cfc17b74ddd476613377f0b325955b (patch)
tree3ccd65e272d234c0c2b71954884b36776c101d7e /src/plugins/cppeditor/cppeditortestcase.h
parentf99f5dcdc6f1ae26145242712985ca42d724e34d (diff)
CppEditor: Generate doxygen comments for functions with macros
...at least for object-like macros. This handles the common case where a macro before the function signature annotates the DLL import/export. Task-number: QTCREATORBUG-15819 Change-Id: I79f22508188019402fb7345222408aaf90106f20 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'src/plugins/cppeditor/cppeditortestcase.h')
-rw-r--r--src/plugins/cppeditor/cppeditortestcase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/cppeditor/cppeditortestcase.h b/src/plugins/cppeditor/cppeditortestcase.h
index c93e3a2c9d..4b4239c295 100644
--- a/src/plugins/cppeditor/cppeditortestcase.h
+++ b/src/plugins/cppeditor/cppeditortestcase.h
@@ -30,6 +30,8 @@
#include <cpptools/cpptoolstestcase.h>
+#include <QVector>
+
namespace CppEditor {
namespace Internal {
@@ -55,6 +57,8 @@ public:
CppEditorWidget *m_editorWidget;
};
+using TestDocuments = QVector<TestDocument>;
+
class TestCase : public CppTools::Tests::TestCase
{
public: