ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/StableTV/StableTV.pm
Revision: 1.1
Committed: Sat Oct 15 20:03:31 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 =head1 NAME
2
3 StableTV - replace parts of mythtv with stable components
4
5 =head1 SYNOPSIS
6
7 use StableTV;
8
9 =head1 DESCRIPTION
10
11 =cut
12
13 package StableTV;
14
15 use Fcntl ();
16
17 BEGIN {
18 $VERSION = '0.01';
19 @ISA = qw(Exporter);
20
21 require XSLoader;
22 XSLoader::load __PACKAGE__, $VERSION;
23
24 require Exporter;
25 }
26
27 =back
28
29 =head1 AUTHORS
30
31 Marc Lehmann <schmorp@schmorp.de>, http://home.schmorp.de/
32
33 =cut
34
35 1