ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/Utilities/SearchPath.pm
Revision: 1.2
Committed: Wed Aug 10 17:27:32 2005 UTC (19 years, 9 months ago) by sashby
Content type: text/plain
Branch: MAIN
Changes since 1.1: +30 -10 lines
Log Message:
Starting to add POD documentation.

File Contents

# User Rev Content
1 sashby 1.2 =head1 NAME
2    
3     Utilities::SearchPath - Utility for path searching.
4    
5     =head1 SYNOPSIS
6    
7     my $obj = Utilities::SearchPath->new();
8    
9     =head1 METHODS
10    
11     =over
12    
13     =cut
14 williamc 1.1
15     package SearchPath;
16    
17 sashby 1.2 =item C<new()>
18    
19     Create a new SearchPath object.
20    
21     =cut
22    
23 williamc 1.1 sub new {
24     my $class=shift;
25     $self={};
26     bless $self, $class;
27     return $self;
28     }
29    
30 sashby 1.2 =back
31    
32     =head1 AUTHOR
33    
34     Originally Written by Christopher Williams.
35    
36     =head1 MAINTAINER
37    
38     Shaun ASHBY L<mailTo:Shaun.Ashby@cern.ch>
39    
40     =cut