Changeset 329 in ProjectBuilder for devel/pb/lib/ProjectBuilder/Version.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/Version.pm

    r74 r329  
    55# and have been isolated here to avoid unrelated effects
    66#
     7package ProjectBuilder::Version;
     8
    79use strict;
     10
     11# Inherit from the "Exporter" module which handles exporting functions.
     12 
     13use Exporter;
     14 
     15# Export, by default, all the functions into the namespace of
     16# any code which uses this module.
     17our @ISA = qw(Exporter);
     18our @EXPORT = qw(pb_version_init);
    819
    920sub pb_version_init {
Note: See TracChangeset for help on using the changeset viewer.