ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/Utilities/SearchPath.pm
Revision: 1.6
Committed: Fri Dec 14 09:04:17 2007 UTC (17 years, 5 months ago) by muzaffar
Content type: text/plain
Branch: MAIN
CVS Tags: V1_1_7, V1_1_6, V1_1_5, V1_2_0-cand3, V1_2_0-cand2, V1_2_0-cand1, V1_1_4, V1_1_3, V1_1_2, V1_1_0_reltag8, V1_1_0_reltag7, V1_1_0_reltag6, V1_1_1, V1_1_0_reltag5, V1_1_0_reltag4, V1_1_0_reltag3, V1_1_0_reltag2, V1_1_0_reltag1, V1_1_0_reltag, V1_1_0, V1_1_0_cand3, V1_1_0_cand2, V1_1_0_cand1
Branch point for: forBinLess_SCRAM
Changes since 1.5: +0 -0 lines
Log Message:
replace head with xml branch

File Contents

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