Parent Directory
|
Revision Log
were forgot to be added to the CVS repository
1 | package SWE::Object::Page; |
2 | use strict; |
3 | use warnings; |
4 | |
5 | sub new ($%) { |
6 | my $class = shift; |
7 | my $self = bless {@_}, $class; |
8 | |
9 | return $self; |
10 | } |
11 | |
12 | sub db ($) { $_[0]->{db} } |
13 | |
14 | sub name ($) { |
15 | return $_[0]->{name}; |
16 | } |
17 | |
18 | 1; |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |