source: ProjectBuilder/projects/casparbuster/devel/lib/CasparBuster/Env.pm@ 1466

Last change on this file since 1466 was 1466, checked in by Bruno Cornec, 12 years ago
File size: 863 bytes
RevLine 
[1466]1#
2# Creates common environment for distributions
3#
4# $Id$
5#
6#
7package CasparBuster::Env;
8
9use strict;
10
11# Global vars
12# Inherit from the "Exporter" module which handles exporting functions.
13#
14use vars qw($VERSION $REVISION @ISA @EXPORT);
15use Exporter;
16#
17# Export, by default, all the functions into the namespace of
18# any code which uses this module.
19
20our @ISA = qw(Exporter);
21our @EXPORT = qw(cb_env_conffile);
22
23=pod
24
25=head1 NAME
26
27CasparBuster::Env - module dealing with CasparBuster environment
28
29=head1 DESCRIPTION
30
31This modules provides functions to allow the setup of the CasparBuster environment
32
33=head1 SYNOPSIS
34
35 use CasparBuster::Env;
36 my $conffile = cb_env_conffile();
37
38=head1 USAGE
39
40=over 4
41
42=item B<cb_env_conffile>
43
44This function returns the mandatory configuration file used for CasparBuster
45
46=cut
47
48sub cb_env_conffile {
49 return("CCCC/cb.conf");
50}
Note: See TracBrowser for help on using the repository browser.