source: ProjectBuilder/projects/casparbuster/devel/lib/CasparBuster/Version.pm@ 1468

Last change on this file since 1468 was 1468, checked in by Bruno Cornec, 12 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#
7package CasparBuster::Version;
8
9use strict;
10
11# Inherit from the "Exporter" module which handles exporting functions.
12
13use vars qw($VERSION $REVISION @ISA @EXPORT);
14use Exporter;
15
16# Export, by default, all the functions into the namespace of
17# any code which uses this module.
18our @ISA = qw(Exporter);
19our @EXPORT = qw(cb_version_init);
20
21$VERSION = "PBVER";
22$REVISION = "PBREV";
23
24sub cb_version_init {
25
26my $ver = $VERSION;
27my $rev = $REVISION;
28
29return($ver,$rev);
30}
311;
Note: See TracBrowser for help on using the repository browser.