Provided by: libclang-perl_0.09-4_amd64 bug

NAME

       Clang::Cursor - Clang cursor class

VERSION

       version 0.09

DESCRIPTION

       A "Clang::Cursor" represents an element in the abstract syntax tree of a translation unit.

METHODS

   kind( )
       Retrieve the Clang::CursorKind of the given cursor.

   type( )
       Retrieve the Clang::Type of the entity referenced by the given cursor.

   spelling( )
       Retrieve the name for the entity referenced by the given cursor.

   num_arguments( )
       Retrieve the number of arguments referenced by the given cursor.

   displayname( )
       Return the display name for the entity referenced by the given cursor.

   children( )
       Retrieve a list of the children of the given cursor. The children are "Clang::Cursor"
       objects too.

   is_pure_virtual( )
       Determine whether the given cursor kind represents a pure virtual method.

   is_virtual( )
       Determine whether the given cursor kind represents a virtual method.

   location( )
       Retrieve the location of the given cursor. This function returns five values: a string
       containing the source file name, an integer containing the initial line number, an integer
       containing the initial column number, an integer containing the final line number, and
       another integer containing the final column number.

   access_specifier( )
       Retrieve the access of the given cursor. This can return the following values: "invalid",
       "public", "protected" or "private". Note that this only works for C++ code, it will return
       "invalid" for C functions.

AUTHOR

       Alessandro Ghedini <alexbio@cpan.org>

LICENSE AND COPYRIGHT

       Copyright 2012 Alessandro Ghedini.

       This program is free software; you can redistribute it and/or modify it under the terms of
       either: the GNU General Public License as published by the Free Software Foundation; or
       the Artistic License.

       See http://dev.perl.org/licenses/ for more information.