forked from qt-creator/qt-creator
Tooltips and help ids: Fix for templates.
Tooltips can still be improved.
This commit is contained in:
@@ -233,6 +233,19 @@ public:
|
||||
virtual ~CppVariable();
|
||||
};
|
||||
|
||||
class CppTemplate : public CppDeclarableElement
|
||||
{
|
||||
public:
|
||||
CppTemplate(CPlusPlus::Symbol *declaration);
|
||||
virtual ~CppTemplate();
|
||||
|
||||
bool isClassTemplate() const;
|
||||
bool isFunctionTemplate() const;
|
||||
|
||||
private:
|
||||
bool m_isClassTemplate;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace CppEditor
|
||||
|
||||
|
||||
Reference in New Issue
Block a user