Tooltips and help ids: Fix for templates.

Tooltips can still be improved.
This commit is contained in:
Leandro Melo
2010-09-23 18:34:17 +02:00
parent 9ebbac63c3
commit b87edd821d
2 changed files with 43 additions and 0 deletions

View File

@@ -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