]> git.llucax.com Git - mecon/samurai.git/blob - doc/apidoc/latex/classSAMURAI__Sistema_a2_cgraph.eps
Funcionalidad de Perfiles, Sistemas y Permisos terminada
[mecon/samurai.git] / doc / apidoc / latex / classSAMURAI__Sistema_a2_cgraph.eps
1 %!PS-Adobe-2.0
2 %%Creator: dot version 1.8.9 (Wed Oct  2 09:41:21 MDT 2002)
3 %%For: (martin) ,,,
4 %%Title: G
5 %%Pages: (atend)
6 %%BoundingBox: 35 35 1445 173
7 %%EndComments
8 save
9 %%BeginProlog
10 /DotDict 200 dict def
11 DotDict begin
12
13 /setupLatin1 {
14 mark
15 /EncodingVector 256 array def
16  EncodingVector 0
17
18 ISOLatin1Encoding 0 255 getinterval putinterval
19
20 EncodingVector
21   dup 306 /AE
22   dup 301 /Aacute
23   dup 302 /Acircumflex
24   dup 304 /Adieresis
25   dup 300 /Agrave
26   dup 305 /Aring
27   dup 303 /Atilde
28   dup 307 /Ccedilla
29   dup 311 /Eacute
30   dup 312 /Ecircumflex
31   dup 313 /Edieresis
32   dup 310 /Egrave
33   dup 315 /Iacute
34   dup 316 /Icircumflex
35   dup 317 /Idieresis
36   dup 314 /Igrave
37   dup 334 /Udieresis
38   dup 335 /Yacute
39   dup 376 /thorn
40   dup 337 /germandbls
41   dup 341 /aacute
42   dup 342 /acircumflex
43   dup 344 /adieresis
44   dup 346 /ae
45   dup 340 /agrave
46   dup 345 /aring
47   dup 347 /ccedilla
48   dup 351 /eacute
49   dup 352 /ecircumflex
50   dup 353 /edieresis
51   dup 350 /egrave
52   dup 355 /iacute
53   dup 356 /icircumflex
54   dup 357 /idieresis
55   dup 354 /igrave
56   dup 360 /dcroat
57   dup 361 /ntilde
58   dup 363 /oacute
59   dup 364 /ocircumflex
60   dup 366 /odieresis
61   dup 362 /ograve
62   dup 365 /otilde
63   dup 370 /oslash
64   dup 372 /uacute
65   dup 373 /ucircumflex
66   dup 374 /udieresis
67   dup 371 /ugrave
68   dup 375 /yacute
69   dup 377 /ydieresis  
70
71 % Set up ISO Latin 1 character encoding
72 /starnetISO {
73         dup dup findfont dup length dict begin
74         { 1 index /FID ne { def }{ pop pop } ifelse
75         } forall
76         /Encoding EncodingVector def
77         currentdict end definefont
78 } def
79 /Times-Roman starnetISO def
80 /Times-Italic starnetISO def
81 /Times-Bold starnetISO def
82 /Times-BoldItalic starnetISO def
83 /Helvetica starnetISO def
84 /Helvetica-Oblique starnetISO def
85 /Helvetica-Bold starnetISO def
86 /Helvetica-BoldOblique starnetISO def
87 /Courier starnetISO def
88 /Courier-Oblique starnetISO def
89 /Courier-Bold starnetISO def
90 /Courier-BoldOblique starnetISO def
91 cleartomark
92 } bind def
93
94 %%BeginResource: procset
95 /coord-font-family /Times-Roman def
96 /default-font-family /Times-Roman def
97 /coordfont coord-font-family findfont 8 scalefont def
98
99 /InvScaleFactor 1.0 def
100 /set_scale {
101         dup 1 exch div /InvScaleFactor exch def
102         dup scale
103 } bind def
104
105 % styles
106 /solid { [] 0 setdash } bind def
107 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
108 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
109 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
110 /bold { 2 setlinewidth } bind def
111 /filled { } bind def
112 /unfilled { } bind def
113 /rounded { } bind def
114 /diagonals { } bind def
115
116 % hooks for setting color 
117 /nodecolor { sethsbcolor } bind def
118 /edgecolor { sethsbcolor } bind def
119 /graphcolor { sethsbcolor } bind def
120 /nopcolor {pop pop pop} bind def
121
122 /beginpage {    % i j npages
123         /npages exch def
124         /j exch def
125         /i exch def
126         /str 10 string def
127         npages 1 gt {
128                 gsave
129                         coordfont setfont
130                         0 0 moveto
131                         (\() show i str cvs show (,) show j str cvs show (\)) show
132                 grestore
133         } if
134 } bind def
135
136 /set_font {
137         findfont exch
138         scalefont setfont
139 } def
140
141 % draw aligned label in bounding box aligned to current point
142 /alignedtext {                  % width adj text
143         /text exch def
144         /adj exch def
145         /width exch def
146         gsave
147                 width 0 gt {
148                         text stringwidth pop adj mul 0 rmoveto
149                 } if
150                 [] 0 setdash
151                 text show
152         grestore
153 } def
154
155 /boxprim {                              % xcorner ycorner xsize ysize
156                 4 2 roll
157                 moveto
158                 2 copy
159                 exch 0 rlineto
160                 0 exch rlineto
161                 pop neg 0 rlineto
162                 closepath
163 } bind def
164
165 /ellipse_path {
166         /ry exch def
167         /rx exch def
168         /y exch def
169         /x exch def
170         matrix currentmatrix
171         newpath
172         x y translate
173         rx ry scale
174         0 0 1 0 360 arc
175         setmatrix
176 } bind def
177
178 /endpage { showpage } bind def
179
180 /layercolorseq
181         [       % layer color sequence - darkest to lightest
182                 [0 0 0]
183                 [.2 .8 .8]
184                 [.4 .8 .8]
185                 [.6 .8 .8]
186                 [.8 .8 .8]
187         ]
188 def
189
190 /setlayer {/maxlayer exch def /curlayer exch def
191         layercolorseq curlayer get
192         aload pop sethsbcolor
193         /nodecolor {nopcolor} def
194         /edgecolor {nopcolor} def
195         /graphcolor {nopcolor} def
196 } bind def
197
198 /onlayer { curlayer ne {invis} if } def
199
200 /onlayers {
201         /myupper exch def
202         /mylower exch def
203         curlayer mylower lt
204         curlayer myupper gt
205         or
206         {invis} if
207 } def
208
209 /curlayer 0 def
210
211 %%EndResource
212 %%EndProlog
213 %%BeginSetup
214 14 default-font-family set_font
215 1 setmiterlimit
216 % /arrowlength 10 def
217 % /arrowwidth 5 def
218
219 % make sure pdfmark is harmless for PS-interpreters other than Distiller
220 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
221 % make '<<' and '>>' safe on PS Level 1 devices
222 /languagelevel where {pop languagelevel}{1} ifelse
223 2 lt {
224     userdict (<<) cvn ([) cvn load put
225     userdict (>>) cvn ([) cvn load put
226 } if
227
228 %%EndSetup
229 %%Page: 1 1
230 %%PageBoundingBox: 36 36 1445 173
231 %%PageOrientation: Portrait
232 gsave
233 35 35 1410 138 boxprim clip newpath
234 36 36 translate
235 0 0 1 beginpage
236 0 0 translate 0 rotate
237 0.000 0.000 0.000 graphcolor
238 10.00 /Helvetica set_font
239
240 %       Node77
241 gsave 10 dict begin
242 filled
243 0.000 0.000 1.000 nodecolor
244 0.000 0.000 0.000 nodecolor
245 newpath 639 112 moveto
246 856 112 lineto
247 856 127 lineto
248 639 127 lineto
249 closepath
250 fill
251 0.000 0.000 1.000 nodecolor
252 newpath 639 112 moveto
253 856 112 lineto
254 856 127 lineto
255 639 127 lineto
256 closepath
257 stroke
258 gsave 10 dict begin
259 747 115 moveto 207 -0.5 (SAMURAI_Sistema::SAMURAI_Sistema) alignedtext
260 end grestore
261 end grestore
262
263 %       Node78
264 [ /Rect [ 646 61 848 75 ]
265   /Border [ 0 0 0 ]
266   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a16) >>
267   /Subtype /Link
268 /ANN pdfmark
269 gsave 10 dict begin
270 newpath 646 60 moveto
271 848 60 lineto
272 848 75 lineto
273 646 75 lineto
274 closepath
275 stroke
276 gsave 10 dict begin
277 747 63 moveto 192 -0.5 (SAMURAI_Sistema::_obtenerDatosDb) alignedtext
278 end grestore
279 end grestore
280
281 %       Node77 -> Node78
282 gsave 10 dict begin
283 solid
284 0.667 0.776 0.439 edgecolor
285 newpath 747 112 moveto
286 747 105 747 94 747 85 curveto
287 stroke
288 gsave 10 dict begin
289 solid
290 0.667 0.776 0.439 edgecolor
291 newpath 750 86 moveto
292 747 76 lineto
293 745 86 lineto
294 closepath
295 fill
296 0.667 0.776 0.439 edgecolor
297 end grestore
298 end grestore
299
300 %       Node79
301 [ /Rect [ 0 9 170 23 ]
302   /Border [ 0 0 0 ]
303   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a15) >>
304   /Subtype /Link
305 /ANN pdfmark
306 gsave 10 dict begin
307 newpath 0 8 moveto
308 171 8 lineto
309 171 23 lineto
310 0 23 lineto
311 closepath
312 stroke
313 gsave 10 dict begin
314 85 11 moveto 161 -0.5 (SAMURAI_Sistema::setContacto) alignedtext
315 end grestore
316 end grestore
317
318 %       Node77 -> Node79
319 gsave 10 dict begin
320 solid
321 0.667 0.776 0.439 edgecolor
322 newpath 672 112 moveto
323 671 112 669 112 668 112 curveto
324 470 85 234 43 134 26 curveto
325 stroke
326 gsave 10 dict begin
327 solid
328 0.667 0.776 0.439 edgecolor
329 newpath 136 24 moveto
330 126 24 lineto
331 135 29 lineto
332 closepath
333 fill
334 0.667 0.776 0.439 edgecolor
335 end grestore
336 end grestore
337
338 %       Node80
339 [ /Rect [ 188 9 372 23 ]
340   /Border [ 0 0 0 ]
341   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a11) >>
342   /Subtype /Link
343 /ANN pdfmark
344 gsave 10 dict begin
345 newpath 188 8 moveto
346 373 8 lineto
347 373 23 lineto
348 188 23 lineto
349 closepath
350 stroke
351 gsave 10 dict begin
352 280 11 moveto 175 -0.5 (SAMURAI_Sistema::setDescripcion) alignedtext
353 end grestore
354 end grestore
355
356 %       Node77 -> Node80
357 gsave 10 dict begin
358 solid
359 0.667 0.776 0.439 edgecolor
360 newpath 684 112 moveto
361 683 112 682 112 681 112 curveto
362 545 87 385 45 316 26 curveto
363 stroke
364 gsave 10 dict begin
365 solid
366 0.667 0.776 0.439 edgecolor
367 newpath 317 24 moveto
368 307 24 lineto
369 316 29 lineto
370 closepath
371 fill
372 0.667 0.776 0.439 edgecolor
373 end grestore
374 end grestore
375
376 %       Node81
377 [ /Rect [ 390 9 562 23 ]
378   /Border [ 0 0 0 ]
379   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a13) >>
380   /Subtype /Link
381 /ANN pdfmark
382 gsave 10 dict begin
383 newpath 390 8 moveto
384 563 8 lineto
385 563 23 lineto
386 390 23 lineto
387 closepath
388 stroke
389 gsave 10 dict begin
390 476 11 moveto 163 -0.5 (SAMURAI_Sistema::setFechaFin) alignedtext
391 end grestore
392 end grestore
393
394 %       Node77 -> Node81
395 gsave 10 dict begin
396 solid
397 0.667 0.776 0.439 edgecolor
398 newpath 690 112 moveto
399 689 112 689 112 688 112 curveto
400 614 92 535 50 498 29 curveto
401 stroke
402 gsave 10 dict begin
403 solid
404 0.667 0.776 0.439 edgecolor
405 newpath 499 27 moveto
406 489 24 lineto
407 497 31 lineto
408 closepath
409 fill
410 0.667 0.776 0.439 edgecolor
411 end grestore
412 end grestore
413
414 %       Node82
415 [ /Rect [ 580 9 816 23 ]
416   /Border [ 0 0 0 ]
417   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a14) >>
418   /Subtype /Link
419 /ANN pdfmark
420 gsave 10 dict begin
421 newpath 580 8 moveto
422 816 8 lineto
423 816 23 lineto
424 580 23 lineto
425 closepath
426 stroke
427 gsave 10 dict begin
428 698 11 moveto 226 -0.5 (SAMURAI_Sistema::setFechaImplementacion) alignedtext
429 end grestore
430 end grestore
431
432 %       Node77 -> Node82
433 gsave 10 dict begin
434 solid
435 0.667 0.776 0.439 edgecolor
436 newpath 696 112 moveto
437 674 106 650 96 637 76 curveto
438 624 56 649 38 671 28 curveto
439 stroke
440 gsave 10 dict begin
441 solid
442 0.667 0.776 0.439 edgecolor
443 newpath 671 31 moveto
444 679 24 lineto
445 669 26 lineto
446 closepath
447 fill
448 0.667 0.776 0.439 edgecolor
449 end grestore
450 end grestore
451
452 %       Node83
453 [ /Rect [ 834 9 1016 23 ]
454   /Border [ 0 0 0 ]
455   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a12) >>
456   /Subtype /Link
457 /ANN pdfmark
458 gsave 10 dict begin
459 newpath 834 8 moveto
460 1017 8 lineto
461 1017 23 lineto
462 834 23 lineto
463 closepath
464 stroke
465 gsave 10 dict begin
466 925 11 moveto 173 -0.5 (SAMURAI_Sistema::setFechaInicio) alignedtext
467 end grestore
468 end grestore
469
470 %       Node77 -> Node83
471 gsave 10 dict begin
472 solid
473 0.667 0.776 0.439 edgecolor
474 newpath 772 112 moveto
475 795 105 830 92 857 76 curveto
476 878 62 900 42 913 29 curveto
477 stroke
478 gsave 10 dict begin
479 solid
480 0.667 0.776 0.439 edgecolor
481 newpath 913 33 moveto
482 918 24 lineto
483 909 29 lineto
484 closepath
485 fill
486 0.667 0.776 0.439 edgecolor
487 end grestore
488 end grestore
489
490 %       Node84
491 [ /Rect [ 1034 9 1202 23 ]
492   /Border [ 0 0 0 ]
493   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a10) >>
494   /Subtype /Link
495 /ANN pdfmark
496 gsave 10 dict begin
497 newpath 1034 8 moveto
498 1203 8 lineto
499 1203 23 lineto
500 1034 23 lineto
501 closepath
502 stroke
503 gsave 10 dict begin
504 1118 11 moveto 159 -0.5 (SAMURAI_Sistema::setNombre) alignedtext
505 end grestore
506 end grestore
507
508 %       Node77 -> Node84
509 gsave 10 dict begin
510 solid
511 0.667 0.776 0.439 edgecolor
512 newpath 780 112 moveto
513 781 112 781 112 782 112 curveto
514 793 108 795 107 807 104 curveto
515 865 84 879 77 938 60 curveto
516 984 46 1038 34 1075 26 curveto
517 stroke
518 gsave 10 dict begin
519 solid
520 0.667 0.776 0.439 edgecolor
521 newpath 1074 29 moveto
522 1083 24 lineto
523 1073 24 lineto
524 closepath
525 fill
526 0.667 0.776 0.439 edgecolor
527 end grestore
528 end grestore
529
530 %       Node85
531 [ /Rect [ 1220 9 1408 23 ]
532   /Border [ 0 0 0 ]
533   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a19) >>
534   /Subtype /Link
535 /ANN pdfmark
536 gsave 10 dict begin
537 newpath 1220 8 moveto
538 1409 8 lineto
539 1409 23 lineto
540 1220 23 lineto
541 closepath
542 stroke
543 gsave 10 dict begin
544 1314 11 moveto 179 -0.5 (SAMURAI_Sistema::setResponsable) alignedtext
545 end grestore
546 end grestore
547
548 %       Node77 -> Node85
549 gsave 10 dict begin
550 solid
551 0.667 0.776 0.439 edgecolor
552 newpath 782 112 moveto
553 783 112 784 112 785 112 curveto
554 846 96 862 94 923 76 curveto
555 944 69 949 64 971 60 curveto
556 1026 47 1167 35 1223 28 curveto
557 1230 27 1238 26 1246 25 curveto
558 stroke
559 gsave 10 dict begin
560 solid
561 0.667 0.776 0.439 edgecolor
562 newpath 1245 28 moveto
563 1255 24 lineto
564 1245 23 lineto
565 closepath
566 fill
567 0.667 0.776 0.439 edgecolor
568 end grestore
569 end grestore
570
571 %       Node86
572 [ /Rect [ 980 61 1150 75 ]
573   /Border [ 0 0 0 ]
574   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a21) >>
575   /Subtype /Link
576 /ANN pdfmark
577 gsave 10 dict begin
578 newpath 980 60 moveto
579 1151 60 lineto
580 1151 75 lineto
581 980 75 lineto
582 closepath
583 stroke
584 gsave 10 dict begin
585 1065 63 moveto 161 -0.5 (SAMURAI_Sistema::setPermisos) alignedtext
586 end grestore
587 end grestore
588
589 %       Node77 -> Node86
590 gsave 10 dict begin
591 solid
592 0.667 0.776 0.439 edgecolor
593 newpath 793 112 moveto
594 850 102 949 86 1011 77 curveto
595 stroke
596 gsave 10 dict begin
597 solid
598 0.667 0.776 0.439 edgecolor
599 newpath 1009 80 moveto
600 1019 76 lineto
601 1009 75 lineto
602 closepath
603 fill
604 0.667 0.776 0.439 edgecolor
605 end grestore
606 end grestore
607
608 %       Node78 -> Node79
609 gsave 10 dict begin
610 solid
611 0.667 0.776 0.439 edgecolor
612 newpath 653 60 moveto
613 651 60 648 60 646 60 curveto
614 437 43 383 41 177 24 curveto
615 stroke
616 gsave 10 dict begin
617 solid
618 0.667 0.776 0.439 edgecolor
619 newpath 177 22 moveto
620 167 24 lineto
621 177 27 lineto
622 closepath
623 fill
624 0.667 0.776 0.439 edgecolor
625 end grestore
626 end grestore
627
628 %       Node78 -> Node80
629 gsave 10 dict begin
630 solid
631 0.667 0.776 0.439 edgecolor
632 newpath 680 60 moveto
633 594 50 447 34 357 25 curveto
634 stroke
635 gsave 10 dict begin
636 solid
637 0.667 0.776 0.439 edgecolor
638 newpath 358 23 moveto
639 348 24 lineto
640 358 28 lineto
641 closepath
642 fill
643 0.667 0.776 0.439 edgecolor
644 end grestore
645 end grestore
646
647 %       Node78 -> Node81
648 gsave 10 dict begin
649 solid
650 0.667 0.776 0.439 edgecolor
651 newpath 708 60 moveto
652 660 51 577 35 525 26 curveto
653 stroke
654 gsave 10 dict begin
655 solid
656 0.667 0.776 0.439 edgecolor
657 newpath 526 24 moveto
658 516 24 lineto
659 525 29 lineto
660 closepath
661 fill
662 0.667 0.776 0.439 edgecolor
663 end grestore
664 end grestore
665
666 %       Node78 -> Node82
667 gsave 10 dict begin
668 solid
669 0.667 0.776 0.439 edgecolor
670 newpath 740 60 moveto
671 732 52 721 40 711 31 curveto
672 stroke
673 gsave 10 dict begin
674 solid
675 0.667 0.776 0.439 edgecolor
676 newpath 713 30 moveto
677 705 24 lineto
678 710 33 lineto
679 closepath
680 fill
681 0.667 0.776 0.439 edgecolor
682 end grestore
683 end grestore
684
685 %       Node78 -> Node83
686 gsave 10 dict begin
687 solid
688 0.667 0.776 0.439 edgecolor
689 newpath 773 60 moveto
690 803 51 856 36 890 26 curveto
691 stroke
692 gsave 10 dict begin
693 solid
694 0.667 0.776 0.439 edgecolor
695 newpath 890 29 moveto
696 899 24 lineto
697 889 24 lineto
698 closepath
699 fill
700 0.667 0.776 0.439 edgecolor
701 end grestore
702 end grestore
703
704 %       Node78 -> Node84
705 gsave 10 dict begin
706 solid
707 0.667 0.776 0.439 edgecolor
708 newpath 801 60 moveto
709 868 50 985 34 1056 25 curveto
710 stroke
711 gsave 10 dict begin
712 solid
713 0.667 0.776 0.439 edgecolor
714 newpath 1054 28 moveto
715 1064 24 lineto
716 1054 23 lineto
717 closepath
718 fill
719 0.667 0.776 0.439 edgecolor
720 end grestore
721 end grestore
722
723 %       Node78 -> Node85
724 gsave 10 dict begin
725 solid
726 0.667 0.776 0.439 edgecolor
727 newpath 829 60 moveto
728 933 50 1113 34 1223 25 curveto
729 stroke
730 gsave 10 dict begin
731 solid
732 0.667 0.776 0.439 edgecolor
733 newpath 1222 28 moveto
734 1232 24 lineto
735 1222 23 lineto
736 closepath
737 fill
738 0.667 0.776 0.439 edgecolor
739 end grestore
740 end grestore
741 endpage
742 grestore
743 %%PageTrailer
744 %%EndPage: 1
745 %%Trailer
746 %%Pages: 1
747 end
748 restore
749 %%EOF