diff options
Diffstat (limited to 'src/plugins/cpptools/cpptoolsreuse.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolsreuse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cpptoolsreuse.h b/src/plugins/cpptools/cpptoolsreuse.h index a0156a8093..87b1e5eb3e 100644 --- a/src/plugins/cpptools/cpptoolsreuse.h +++ b/src/plugins/cpptools/cpptoolsreuse.h @@ -32,6 +32,7 @@ #include "cpptools_global.h" +QT_FORWARD_DECLARE_CLASS(QChar) QT_FORWARD_DECLARE_CLASS(QTextCursor) QT_FORWARD_DECLARE_CLASS(QStringRef) @@ -48,6 +49,9 @@ void CPPTOOLS_EXPORT moveCursorToStartOfIdentifier(QTextCursor *tc); bool CPPTOOLS_EXPORT isOwnershipRAIIType(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context); +bool CPPTOOLS_EXPORT isValidAsciiIdentifierChar(const QChar &ch); +bool CPPTOOLS_EXPORT isValidFirstIdentifierChar(const QChar &ch); +bool CPPTOOLS_EXPORT isValidIdentifierChar(const QChar &ch); bool CPPTOOLS_EXPORT isValidIdentifier(const QString &s); bool CPPTOOLS_EXPORT isQtKeyword(const QStringRef &text); |