App::Info::Lib - Information about software libraries on a system


App-Info documentation Contained in the App-Info distribution.

Index


Code Index:

NAME

Top

App::Info::Lib - Information about software libraries on a system

DESCRIPTION

Top

This class is an abstract base class for App::Info subclasses that provide information about specific software libraries. Its subclasses are required to implement its interface. See App::Info for a complete description, and App::Info::Lib::Iconv for an example implementation.

INTERFACE

Top

Currently, App::Info::Lib adds no more methods than those from its parent class, App::Info.

SUPPORT

Top

This module is stored in an open GitHub repository. Feel free to fork and contribute!

Please file bug reports via GitHub Issues or by sending mail to bug-App-Info@rt.cpan.org.

AUTHOR

Top

David E. Wheeler <david@justatheory.com>

SEE ALSO

Top

App::Info, App::Info::Lib::Iconv, App::Info::Lib::Expat

COPYRIGHT AND LICENSE

Top


App-Info documentation Contained in the App-Info distribution.

package App::Info::Lib;

use strict;
use App::Info;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info);
$VERSION = '0.57';

1;
__END__