/[cwmp]/google/trunk/lib/CWMP/_MODULE.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /google/trunk/lib/CWMP/_MODULE.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 112 - (hide annotations)
Fri Oct 26 11:42:39 2007 UTC (16 years, 8 months ago) by dpavlin
File size: 537 byte(s)
reorg source code tree to make trunk
1 dpavlin 73 # Dobrica Pavlinusic, <dpavlin@rot13.org> 06/22/07 14:35:38 CEST
2     package CWMP::_MODULE;
3    
4     use strict;
5     use warnings;
6    
7    
8     use base qw/Class::Accessor/;
9     __PACKAGE__->mk_accessors( qw/
10     debug
11     / );
12    
13     #use Carp qw/confess/;
14 dpavlin 74 use Data::Dump qw/dump/;
15 dpavlin 73
16     =head1 NAME
17    
18     CWMP::_MODULE - description
19    
20     =head1 METHODS
21    
22     =head2 new
23    
24     my $obj = CWMP::_MODULE->new({
25     debug => 1
26     });
27    
28     =cut
29    
30     sub new {
31     my $class = shift;
32     my $self = $class->SUPER::new( @_ );
33    
34 dpavlin 74 warn "created ", __PACKAGE__, "(", dump( @_ ), ") object\n" if $self->debug;
35 dpavlin 73
36     return $self;
37     }
38    
39    
40     1;

  ViewVC Help
Powered by ViewVC 1.1.26