source: trunk/soft/ObsData/ObsData/Repository.pm @ 43

Last change on this file since 43 was 43, checked in by thauvin, 19 years ago
  • Property cvs2svn:cvs-rev set to 1.3
  • Property svn:keywords set to Author Date Id Revision
File size: 250 bytes
Line 
1# $Id$
2
3package ObsData::Repository;
4
5use strict;
6use warnings;
7use ObsData;
8
9our @ISA = qw(ObsData);
10
11=head1 METHODS
12
13=head2 new
14
15=cut
16
17sub new {
18    my ($class, $obsdata) = @_;
19
20    $obsdata or return undef;
21   
22    bless($obsdata, $class);
23}
24
251;
Note: See TracBrowser for help on using the repository browser.