| Revision: | 1.1 |
| Committed: | Tue Nov 1 17:58:57 2005 UTC (20 years, 10 months ago) by root |
| Branch: | MAIN |
| CVS Tags: | HEAD |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.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 | =head1 AUTHORS | ||
| 28 | |||
| 29 | Marc Lehmann <schmorp@schmorp.de>, http://home.schmorp.de/ | ||
| 30 | |||
| 31 | =cut | ||
| 32 | |||
| 33 | 1 |