line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Cvs::Result::Checkout; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
14
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
228
|
|
4
|
2
|
|
|
2
|
|
17
|
use base qw(Cvs::Result::Base); |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
1561
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
sub init |
7
|
|
|
|
|
|
|
{ |
8
|
2
|
|
|
2
|
0
|
12
|
my $self = shift->SUPER::init(@_); |
9
|
2
|
|
|
|
|
5
|
return $self; |
10
|
|
|
|
|
|
|
} |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
=pod |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 LICENCE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
18
|
|
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as |
19
|
|
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the |
20
|
|
|
|
|
|
|
License, or (at your option) any later version. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful, but |
23
|
|
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of |
24
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
25
|
|
|
|
|
|
|
Lesser General Public License for more details. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public |
28
|
|
|
|
|
|
|
License along with this library; if not, write to the Free Software |
29
|
|
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
30
|
|
|
|
|
|
|
USA |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 COPYRIGHT |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Copyright (C) 2003 - Olivier Poitrey |
35
|
|
|
|
|
|
|
|