]> git.llucax.com Git - mecon/samurai.git/blob - doc/apidoc/latex/classSAMURAI__Sistema_a25_cgraph.eps
Funcionalidad de Perfiles, Sistemas y Permisos terminada
[mecon/samurai.git] / doc / apidoc / latex / classSAMURAI__Sistema_a25_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 1887 121
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 1887 121
231 %%PageOrientation: Portrait
232 gsave
233 35 35 1852 86 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 %       Node103
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 848 60 moveto
246 1034 60 lineto
247 1034 75 lineto
248 848 75 lineto
249 closepath
250 fill
251 0.000 0.000 1.000 nodecolor
252 newpath 848 60 moveto
253 1034 60 lineto
254 1034 75 lineto
255 848 75 lineto
256 closepath
257 stroke
258 gsave 10 dict begin
259 941 63 moveto 176 -0.5 (SAMURAI_Sistema::_modificarDb) alignedtext
260 end grestore
261 end grestore
262
263 %       Node104
264 [ /Rect [ 0 9 212 23 ]
265   /Border [ 0 0 0 ]
266   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a27) >>
267   /Subtype /Link
268 /ANN pdfmark
269 gsave 10 dict begin
270 newpath 0 8 moveto
271 212 8 lineto
272 212 23 lineto
273 0 23 lineto
274 closepath
275 stroke
276 gsave 10 dict begin
277 106 11 moveto 202 -0.5 (SAMURAI_Sistema::_borrarPermisosDb) alignedtext
278 end grestore
279 end grestore
280
281 %       Node103 -> Node104
282 gsave 10 dict begin
283 solid
284 0.667 0.776 0.439 edgecolor
285 newpath 857 60 moveto
286 854 60 851 60 848 60 curveto
287 567 39 496 42 216 24 curveto
288 stroke
289 gsave 10 dict begin
290 solid
291 0.667 0.776 0.439 edgecolor
292 newpath 216 22 moveto
293 206 24 lineto
294 216 27 lineto
295 closepath
296 fill
297 0.667 0.776 0.439 edgecolor
298 end grestore
299 end grestore
300
301 %       Node105
302 [ /Rect [ 230 9 442 23 ]
303   /Border [ 0 0 0 ]
304   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a26) >>
305   /Subtype /Link
306 /ANN pdfmark
307 gsave 10 dict begin
308 newpath 230 8 moveto
309 443 8 lineto
310 443 23 lineto
311 230 23 lineto
312 closepath
313 stroke
314 gsave 10 dict begin
315 336 11 moveto 203 -0.5 (SAMURAI_Sistema::_grabarPermisosDb) alignedtext
316 end grestore
317 end grestore
318
319 %       Node103 -> Node105
320 gsave 10 dict begin
321 solid
322 0.667 0.776 0.439 edgecolor
323 newpath 855 60 moveto
324 852 60 850 60 848 60 curveto
325 705 47 538 33 435 25 curveto
326 stroke
327 gsave 10 dict begin
328 solid
329 0.667 0.776 0.439 edgecolor
330 newpath 435 23 moveto
331 425 24 lineto
332 435 27 lineto
333 closepath
334 fill
335 0.667 0.776 0.439 edgecolor
336 end grestore
337 end grestore
338
339 %       Node106
340 [ /Rect [ 460 9 632 23 ]
341   /Border [ 0 0 0 ]
342   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a9) >>
343   /Subtype /Link
344 /ANN pdfmark
345 gsave 10 dict begin
346 newpath 460 8 moveto
347 633 8 lineto
348 633 23 lineto
349 460 23 lineto
350 closepath
351 stroke
352 gsave 10 dict begin
353 546 11 moveto 163 -0.5 (SAMURAI_Sistema::getContacto) alignedtext
354 end grestore
355 end grestore
356
357 %       Node103 -> Node106
358 gsave 10 dict begin
359 solid
360 0.667 0.776 0.439 edgecolor
361 newpath 884 60 moveto
362 812 50 688 34 611 25 curveto
363 stroke
364 gsave 10 dict begin
365 solid
366 0.667 0.776 0.439 edgecolor
367 newpath 613 23 moveto
368 603 24 lineto
369 613 28 lineto
370 closepath
371 fill
372 0.667 0.776 0.439 edgecolor
373 end grestore
374 end grestore
375
376 %       Node107
377 [ /Rect [ 650 9 836 23 ]
378   /Border [ 0 0 0 ]
379   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a5) >>
380   /Subtype /Link
381 /ANN pdfmark
382 gsave 10 dict begin
383 newpath 650 8 moveto
384 837 8 lineto
385 837 23 lineto
386 650 23 lineto
387 closepath
388 stroke
389 gsave 10 dict begin
390 743 11 moveto 177 -0.5 (SAMURAI_Sistema::getDescripcion) alignedtext
391 end grestore
392 end grestore
393
394 %       Node103 -> Node107
395 gsave 10 dict begin
396 solid
397 0.667 0.776 0.439 edgecolor
398 newpath 912 60 moveto
399 877 51 818 35 781 26 curveto
400 stroke
401 gsave 10 dict begin
402 solid
403 0.667 0.776 0.439 edgecolor
404 newpath 782 24 moveto
405 772 24 lineto
406 781 29 lineto
407 closepath
408 fill
409 0.667 0.776 0.439 edgecolor
410 end grestore
411 end grestore
412
413 %       Node108
414 [ /Rect [ 854 9 1028 23 ]
415   /Border [ 0 0 0 ]
416   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a7) >>
417   /Subtype /Link
418 /ANN pdfmark
419 gsave 10 dict begin
420 newpath 854 8 moveto
421 1029 8 lineto
422 1029 23 lineto
423 854 23 lineto
424 closepath
425 stroke
426 gsave 10 dict begin
427 941 11 moveto 165 -0.5 (SAMURAI_Sistema::getFechaFin) alignedtext
428 end grestore
429 end grestore
430
431 %       Node103 -> Node108
432 gsave 10 dict begin
433 solid
434 0.667 0.776 0.439 edgecolor
435 newpath 941 60 moveto
436 941 53 941 42 941 33 curveto
437 stroke
438 gsave 10 dict begin
439 solid
440 0.667 0.776 0.439 edgecolor
441 newpath 944 34 moveto
442 941 24 lineto
443 939 34 lineto
444 closepath
445 fill
446 0.667 0.776 0.439 edgecolor
447 end grestore
448 end grestore
449
450 %       Node109
451 [ /Rect [ 1046 9 1284 23 ]
452   /Border [ 0 0 0 ]
453   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a8) >>
454   /Subtype /Link
455 /ANN pdfmark
456 gsave 10 dict begin
457 newpath 1046 8 moveto
458 1284 8 lineto
459 1284 23 lineto
460 1046 23 lineto
461 closepath
462 stroke
463 gsave 10 dict begin
464 1165 11 moveto 228 -0.5 (SAMURAI_Sistema::getFechaImplementacion) alignedtext
465 end grestore
466 end grestore
467
468 %       Node103 -> Node109
469 gsave 10 dict begin
470 solid
471 0.667 0.776 0.439 edgecolor
472 newpath 974 60 moveto
473 1013 51 1080 35 1123 26 curveto
474 stroke
475 gsave 10 dict begin
476 solid
477 0.667 0.776 0.439 edgecolor
478 newpath 1123 29 moveto
479 1132 24 lineto
480 1122 24 lineto
481 closepath
482 fill
483 0.667 0.776 0.439 edgecolor
484 end grestore
485 end grestore
486
487 %       Node110
488 [ /Rect [ 1302 9 1486 23 ]
489   /Border [ 0 0 0 ]
490   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a6) >>
491   /Subtype /Link
492 /ANN pdfmark
493 gsave 10 dict begin
494 newpath 1302 8 moveto
495 1487 8 lineto
496 1487 23 lineto
497 1302 23 lineto
498 closepath
499 stroke
500 gsave 10 dict begin
501 1394 11 moveto 175 -0.5 (SAMURAI_Sistema::getFechaInicio) alignedtext
502 end grestore
503 end grestore
504
505 %       Node103 -> Node110
506 gsave 10 dict begin
507 solid
508 0.667 0.776 0.439 edgecolor
509 newpath 1006 60 moveto
510 1089 50 1232 34 1319 25 curveto
511 stroke
512 gsave 10 dict begin
513 solid
514 0.667 0.776 0.439 edgecolor
515 newpath 1318 28 moveto
516 1328 24 lineto
517 1318 23 lineto
518 closepath
519 fill
520 0.667 0.776 0.439 edgecolor
521 end grestore
522 end grestore
523
524 %       Node111
525 [ /Rect [ 1504 9 1642 23 ]
526   /Border [ 0 0 0 ]
527   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a3) >>
528   /Subtype /Link
529 /ANN pdfmark
530 gsave 10 dict begin
531 newpath 1504 8 moveto
532 1643 8 lineto
533 1643 23 lineto
534 1504 23 lineto
535 closepath
536 stroke
537 gsave 10 dict begin
538 1573 11 moveto 129 -0.5 (SAMURAI_Sistema::getId) alignedtext
539 end grestore
540 end grestore
541
542 %       Node103 -> Node111
543 gsave 10 dict begin
544 solid
545 0.667 0.776 0.439 edgecolor
546 newpath 1027 60 moveto
547 1030 60 1032 60 1034 60 curveto
548 1240 43 1294 44 1499 24 curveto
549 stroke
550 gsave 10 dict begin
551 solid
552 0.667 0.776 0.439 edgecolor
553 newpath 1499 27 moveto
554 1509 24 lineto
555 1499 22 lineto
556 closepath
557 fill
558 0.667 0.776 0.439 edgecolor
559 end grestore
560 end grestore
561
562 %       Node112
563 [ /Rect [ 1660 9 1850 23 ]
564   /Border [ 0 0 0 ]
565   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a18) >>
566   /Subtype /Link
567 /ANN pdfmark
568 gsave 10 dict begin
569 newpath 1660 8 moveto
570 1851 8 lineto
571 1851 23 lineto
572 1660 23 lineto
573 closepath
574 stroke
575 gsave 10 dict begin
576 1755 11 moveto 181 -0.5 (SAMURAI_Sistema::getResponsable) alignedtext
577 end grestore
578 end grestore
579
580 %       Node103 -> Node112
581 gsave 10 dict begin
582 solid
583 0.667 0.776 0.439 edgecolor
584 newpath 1025 60 moveto
585 1028 60 1031 60 1034 60 curveto
586 1310 40 1382 43 1657 24 curveto
587 stroke
588 gsave 10 dict begin
589 solid
590 0.667 0.776 0.439 edgecolor
591 newpath 1657 27 moveto
592 1667 24 lineto
593 1657 22 lineto
594 closepath
595 fill
596 0.667 0.776 0.439 edgecolor
597 end grestore
598 end grestore
599 endpage
600 grestore
601 %%PageTrailer
602 %%EndPage: 1
603 %%Trailer
604 %%Pages: 1
605 end
606 restore
607 %%EOF