File Coverage

blib/lib/Jabber/RPC.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # Jabber-RPC
2             # (c) DJ Adams 2001
3              
4             # $Id: RPC.pm,v 1.1.1.1 2001/09/24 11:23:01 dj Exp $
5              
6             =head1 NAME
7              
8             Jabber::RPC - Jabber-RPC Implementation
9              
10             =head1 SYNOPSIS
11              
12             See documentation for Jabber::RPC::Server and Jabber::RPC::Client.
13            
14             =head1 DESCRIPTION
15              
16             Jabber::RPC is a library that implements Jabber-RPC for Perl.
17             The library consists of two modules, Jabber::RPC::Server and
18             Jabber::RPC::Client. Please refer to the documentation for these
19             two modules for more information.
20              
21             =head1 VERSION
22              
23             early
24              
25             =head1 AUTHOR
26              
27             DJ Adams
28              
29             =head1 SEE ALSO
30              
31             Jabber::RPC::HTTPgate, Jabber::Connection
32              
33             =cut
34              
35             package Jabber::RPC;
36              
37 1     1   3912 use vars qw($VERSION);
  1         3  
  1         75  
38              
39             $VERSION = '0.01';
40              
41             1;