ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/URL/URL_interface.pm
Revision: 1.1.2.1
Committed: Fri Aug 4 08:21:25 2000 UTC (24 years, 9 months ago) by williamc
Content type: text/plain
Branch: HPWbranch
CVS Tags: BuildSystemProto1, V0_18_0, V0_18_0model, V0_17_1, V0_18_0alpha, V0_17_0, V0_16_4, V0_16_3, V0_16_2, V0_16_1, V0_16_0, V0_15_1, V0_15_0, V0_15_0beta, V0_14_0
Branch point for: V0_17branch, V0_16branch, V0_15branch
Changes since 1.1: +0 -0 lines
Log Message:
Add to branch

File Contents

# User Rev Content
1 williamc 1.1 #
2     # standard url interface - dummy implementation
3     #
4     # Interface
5     # ---------
6     # new() : new object - calls init ->override init
7     # get(url, destination) : Override
8     # init() : Override
9    
10     package URL::URL_interface;
11     use URL::URLclass;
12     require 5.001;
13    
14     sub new {
15     my $class=shift;
16     $self={};
17     bless $self, $class;
18     $self->init();
19     return $self;
20     }
21    
22     # ----- Dummy interface routines
23     sub init {
24     # Dummy - override as reqd
25     }