Revision: | 1.2 |
Committed: | Fri Dec 10 13:41:40 2004 UTC (20 years, 5 months ago) by sashby |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V1_1_7, V1_1_6, V1_1_5, 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_0_3-p4, V1_1_0_cand3, V1_1_0_cand2, V1_1_0_cand1, HEAD_SM_071214, forV1_1_0, v103_xml_071106, V1_0_3-p3, V1_0_3-p2, V1_1_0, v110p1, V110p6, V110p5, V110p4, V110p3, before110xmlBRmerge, V110p2, V110p1, V1_0_4p1, V1_0_3-p1, V1_0_3, V1_0_2, V1_0_2_p1, v102p1, V1_0_1, V1_0_0 |
Branch point for: | forBinLess_SCRAM, HEAD_BRANCH_SM_071214, v200branch, v103_with_xml, v103_branch |
Changes since 1.1: | +43 -0 lines |
Log Message: | Merged V1_0 branch to HEAD |
# | User | Rev | Content |
---|---|---|---|
1 | sashby | 1.2 | package Graph; |
2 | |||
3 | use strict; | ||
4 | local $^W = 1; | ||
5 | |||
6 | use Graph::Base; | ||
7 | use Graph::Directed; | ||
8 | |||
9 | use vars qw($VERSION @ISA); | ||
10 | |||
11 | $VERSION = 0.2; | ||
12 | |||
13 | @ISA = qw(Graph::Directed Graph::Base); | ||
14 | |||
15 | =head1 NAME | ||
16 | |||
17 | Graph - graph operations | ||
18 | |||
19 | =head1 SYNOPSIS | ||
20 | |||
21 | use Graph; | ||
22 | |||
23 | $g = new Graph; | ||
24 | |||
25 | =head1 DESCRIPTION | ||
26 | |||
27 | This is just a front-end class for Graph::Directed and Graph::Base. | ||
28 | |||
29 | Instantiated Graph objects (like $g in the the above description) | ||
30 | are in fact Graph::Base objects in disguise, look there for the | ||
31 | methods available. If you want undirected graphs, create Graph::Undirected | ||
32 | objects. | ||
33 | |||
34 | =head1 COPYRIGHT | ||
35 | |||
36 | Copyright 1999, O'Reilly & Associates. | ||
37 | |||
38 | This code is distributed under the same copyright terms as Perl itself. | ||
39 | |||
40 | =cut | ||
41 | |||
42 | 1; | ||
43 |