| ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages 
 | 
| This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). | 
| 
Devel::InnerPackage(3)               User Contributed Perl Documentation              Devel::InnerPackage(3)
NAME
       Devel::InnerPackage - find all the inner packages of a package
SYNOPSIS
           use Foo::Bar;
           use Devel::innerPackage qw(list_packages);
           my @inner_packages = list_packages('Foo::Bar');
DESCRIPTION
       Given a file like this
           package Foo::Bar;
           sub foo {}
           package Foo::Bar::Quux;
           sub quux {}
           package Foo::Bar::Quirka;
           sub quirka {}
           1;
       then
           list_packages('Foo::Bar');
       will return
           Foo::Bar::Quux
           Foo::Bar::Quirka
METHODS
       list_packages <package name>
       Return a list of all inner packages of that package.
AUTHOR
       Simon Wistow <simon@thegestalt.org>
COPYING
       Copyright, 2005 Simon Wistow
       Distributed under the same terms as Perl itself.
BUGS
       None known.
perl v5.8.8                                      2007-01-29                           Devel::InnerPackage(3)
 | 
| 
 |