Changeset 329 in ProjectBuilder for devel/pb/lib/ProjectBuilder/Distribution.pm


Ignore:
Timestamp:
Feb 22, 2008, 12:07:25 PM (16 years ago)
Author:
Bruno Cornec
Message:
  • All modules are packages now (simplifies use and spec)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/lib/ProjectBuilder/Distribution.pm

    r315 r329  
    66#
    77
     8package ProjectBuilder::Distribution;
     9
    810use strict;
     11
     12# Inherit from the "Exporter" module which handles exporting functions.
     13 
     14use Exporter;
     15 
     16# Export, by default, all the functions into the namespace of
     17# any code which uses this module.
     18 
     19our @ISA = qw(Exporter);
     20our @EXPORT = qw(pb_distro_init pb_get_distro);
    921
    1022sub pb_distro_init {
Note: See TracChangeset for help on using the changeset viewer.