Prepare for git repository
[spider.git] / perl / DXConnect.pm
1 #
2 # module to manage outgoing connections and things
3 #
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
5 #
6 # $Id$
7 #
8
9 package DXConnect;
10
11 @ISA = qw(DXChannel);
12
13 use DXUtil;
14 use DXM;
15 use DXDebug;
16
17 use strict;
18
19 sub init
20 {
21
22 }
23
24 sub process
25 {
26
27 }
28
29 1;
30 __END__
31