/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include "clangtype.h" #include #include #include class Utf8String; namespace ClangBackEnd { class SourceLocation; class SourceRange; class ClangString; class Cursor { friend class Type; friend bool operator==(const Cursor &first, const Cursor &second); public: Cursor(); Cursor(CXCursor cxCursor); bool isNull() const; bool isValid() const; bool isTranslationUnit() const; bool isDefinition() const; bool isDynamicCall() const; bool isVirtualMethod() const; bool isPureVirtualMethod() const; bool isConstantMethod() const; bool isStaticMethod() const; bool isCompoundType() const; bool isDeclaration() const; bool isLocalVariable() const; bool hasFinalFunctionAttribute() const; bool hasFinalClassAttribute() const; bool isUnexposed() const; Utf8String unifiedSymbolResolution() const; Utf8String mangling() const; ClangString spelling() const; Utf8String displayName() const; Utf8String briefComment() const; Utf8String rawComment() const; int argumentCount() const; Type type() const; Type nonPointerTupe() const; SourceLocation sourceLocation() const; SourceRange sourceRange() const; SourceRange commentRange() const; Cursor definition() const; Cursor canonical() const; Cursor alias() const; Cursor referenced() const; Cursor semanticParent() const; Cursor lexicalParent() const; Cursor functionBaseDeclaration() const; Cursor functionBase() const; Cursor argument(int index) const; std::vector outputArguments() const; CXCursorKind kind() const; template void visit(VisitorCallback visitorCallback) const; private: CXCursor cxCursor; }; template void Cursor::visit(VisitorCallback visitorCallback) const { auto visitor = [] (CXCursor cursor, CXCursor parent, CXClientData lambda) -> CXChildVisitResult { auto &visitorCallback = *static_cast(lambda); return visitorCallback(cursor, parent); }; clang_visitChildren(cxCursor, visitor, &visitorCallback); } bool operator==(const Cursor &first, const Cursor &second); void PrintTo(CXCursorKind cursorKind, ::std::ostream *os); void PrintTo(const Cursor &cursor, ::std::ostream* os); } // namespace ClangBackEnd