The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Clang::TUnit;
$Clang::TUnit::VERSION = '0.07';
use strict;
use warnings;

=head1 NAME

Clang::TUnit - Clang translation unit class

=head1 VERSION

version 0.07

=head1 DESCRIPTION

A C<Clang::TUnit> represents a single translation unit which resides in an index.

=head1 METHODS

=head2 cursor( )

Retrieve the L<Clang::Cursor> corresponding to the given translation unit.

=head2 spelling( )

Retrieve the original translation unit source file name.

=head2 diagnostics( )

Retrieve the L<Clang::Diagnostic>s associated with the given C<Clang::TUnit>.

=head1 AUTHOR

Alessandro Ghedini <alexbio@cpan.org>

=head1 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.

=cut

1; # End of Clang::TUnit