File: exiv2.dot

package info (click to toggle)
exiv2 0.20-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 13,080 kB
  • ctags: 6,382
  • sloc: cpp: 56,011; sh: 10,092; ansic: 1,622; makefile: 594; awk: 92; python: 36; sed: 16
file content (66 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
################################################################################
# File     : exiv2.dot
# Version  : $Rev: 572 $
# Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
# History  : 18-Feb-04, ahu: created
#            19-Mar-05, ahu: updated after inside-out change
#
# Description:
#  Dot file for a graph showing the component dependencies ("uses in the 
#  interface") of the Exiv2 library.
#  Run the following command to get the image: 
#  $ dot -Tgif -oexiv2.gif exiv2.dot
################################################################################

digraph "Exiv2 component dependencies" {

	L1 [shape=plaintext] ;
	L2 [shape=plaintext] ;
	L3 [shape=plaintext] ;
	L4 [shape=plaintext] ;
	L5 [shape=plaintext] ;
	L6 [shape=plaintext] ;

	"L6" -> "L5" -> "L4" -> "L3" -> "L2" -> "L1" [style=invis] ;

	"exif"      [shape=box] ;
	"iptc"      [shape=box] ;
	"metadatum" [shape=box] ;
	"ifd"       [shape=box] ;
	"image"     [shape=box] ;
	"tags"      [shape=box] ;
	"datasets"  [shape=box] ;
	"value"     [shape=box] ;
	"types"     [shape=box] ;
	"error"     [shape=box] ;
	"makernote" [shape=box] ;
	"basicio"   [shape=box] ;
	"*mn"       [shape=box] ;
	"jpgimage"  [shape=box] ;

	clusterrank="local";
	"basicio" -> "error"
	"basicio" -> "types"
	"*mn" -> "makernote"
	"*mn" -> "tags"
	"datasets" -> "metadatum"
	"exif" -> "ifd"
	"exif" -> "tags"
        "exif" -> "error"
	"ifd" -> "types"
	"image" -> "basicio"
	"iptc" -> "datasets"
	"iptc" -> "error"
	"jpgimage" -> "exif"
	"jpgimage" -> "image"
	"jpgimage" -> "iptc"
	"makernote" -> "ifd"
	"metadatum" -> "value"
	"tags" -> "metadatum"
	"value" -> "types"

	{ rank=same; L1 "types" }
	{ rank=same; L2 "value" "ifd" }
	{ rank=same; L5 "image" "iptc" }

}