The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Padre::DB::RecentlyUsed;

# This class will be automatically loaded by Padre::DB,
# Overloading the code already auto-generated by Padre::DB.

use 5.008;
use strict;
use warnings;

our $VERSION = '0.47';

1;

__END__

=pod

=head1 NAME

Padre::DB::RecentlyUsed - Database table to store recently used stuff

=head1 SYNOPSIS

        my @files = Padre::DB::RecentlyUsed->select(
                'where type = ?', $type,
        );

=head1 DESCRIPTION

This class allows storing in L<Padre>'s database the files .

=head1 PUBLIC METHODS

=head2 Accessors

The following accessors are automatically created by L<ORLite>:

=over 4

=item id()

=item file()

=item position()

=item focus()

=item session()

=back

=head2 Class methods

The following subs are automatically created by L<ORLite>.
Refer to L<ORLite> for more information on them:

=over 4

=item select()

=item count()

=item new()

=item create()

=item insert()

=item delete()

=item truncate()

=back

=head1 COPYRIGHT & LICENSE

Copyright 2008-2009 The Padre development team as listed in Padre.pm.

This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the
LICENSE file included with this module.

=cut

# Copyright 2008-2009 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.