|
Last change
on this file since 1468 was 1468, checked in by Bruno Cornec, 14 years ago |
- Still working to have a first cbusterize version working
|
|
File size:
631 bytes
|
| Line | |
|---|
| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | #
|
|---|
| 3 | # Declare versions that will be used in cb
|
|---|
| 4 | # Those are filtered with pb mecanism
|
|---|
| 5 | # and have been isolated here to avoid unrelated effects
|
|---|
| 6 | #
|
|---|
| 7 | package CasparBuster::Version;
|
|---|
| 8 |
|
|---|
| 9 | use strict;
|
|---|
| 10 |
|
|---|
| 11 | # Inherit from the "Exporter" module which handles exporting functions.
|
|---|
| 12 |
|
|---|
| 13 | use vars qw($VERSION $REVISION @ISA @EXPORT);
|
|---|
| 14 | use Exporter;
|
|---|
| 15 |
|
|---|
| 16 | # Export, by default, all the functions into the namespace of
|
|---|
| 17 | # any code which uses this module.
|
|---|
| 18 | our @ISA = qw(Exporter);
|
|---|
| 19 | our @EXPORT = qw(cb_version_init);
|
|---|
| 20 |
|
|---|
| 21 | $VERSION = "PBVER";
|
|---|
| 22 | $REVISION = "PBREV";
|
|---|
| 23 |
|
|---|
| 24 | sub cb_version_init {
|
|---|
| 25 |
|
|---|
| 26 | my $ver = $VERSION;
|
|---|
| 27 | my $rev = $REVISION;
|
|---|
| 28 |
|
|---|
| 29 | return($ver,$rev);
|
|---|
| 30 | }
|
|---|
| 31 | 1;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.