package ZTN::Radio;

use warnings;
use strict;
use Carp qw(croak cluck);
use IO::Socket;

=head1 NAME

ZTN::Radio - Interface for ZTNRadio

=head1 VERSION

Version 0.01

=cut

our $VERSION = '0.01';

sub new {
	my $class = shift;
	my $self  = bless { @_ }, $class;
	return $self;
}

=head1 SYNOPSIS

This module provides a sane perl interface for ZTNRadio

Example:

    use ZTN::Radio;

    my $radio = ZTN::Radio->new();
    ...

=head1 EXPORT

A list of functions that can be exported.  You can delete this section
if you don't export anything, such as for a purely object-oriented module.

=head1 SUBROUTINES/METHODS

=head2 listeners

Retrieves the current number of listeners

=cut

sub listeners {
	my $self = shift;
	return 1;
}

=head2 np

Retrieves the current song playing

=cut

sub np {
	my $self = shift;
	return 1;
}

=head2 uptime

Retrieves how long the stream has been running

=cut

sub uptime {
	my $self = shift;
	return 1;
}

=head1 AUTHOR

Matthew Barksdale, C<< <matthew at ztecnet.net> >>

=head1 BUGS

Please report any bugs or feature requests to C<bug-ztn-radio at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ZTN-Radio>.  I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.




=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc ZTN::Radio


You can also look for information at:

=over 4

=item * RT: CPAN's request tracker

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=ZTN-Radio>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/ZTN-Radio>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/ZTN-Radio>

=item * Search CPAN

L<http://search.cpan.org/dist/ZTN-Radio/>

=back


=head1 ACKNOWLEDGEMENTS


=head1 LICENSE AND COPYRIGHT

Copyright 2010 Matthew Barksdale.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.


=cut

1; # End of ZTN::Radio
