| Revision: | 1.1 |
| Committed: | Sat Oct 15 20:03:31 2005 UTC (20 years, 6 months ago) by root |
| Branch: | MAIN |
| CVS Tags: | HEAD |
| Log Message: | *** empty log message *** |
| # | 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 |