]> git.llucax.com Git - mecon/samurai.git/blob - doc/apidoc/latex/classSAMURAI__Permiso_a6_cgraph.eps
Agrego documentacion funcional del Myrna. Agrego un permiso general de acceso a las...
[mecon/samurai.git] / doc / apidoc / latex / classSAMURAI__Permiso_a6_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 431 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 431 173
231 %%PageOrientation: Portrait
232 gsave
233 35 35 396 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 %       Node36
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 48 112 moveto
246 269 112 lineto
247 269 127 lineto
248 48 127 lineto
249 closepath
250 fill
251 0.000 0.000 1.000 nodecolor
252 newpath 48 112 moveto
253 269 112 lineto
254 269 127 lineto
255 48 127 lineto
256 closepath
257 stroke
258 gsave 10 dict begin
259 158 115 moveto 211 -0.5 (SAMURAI_Permiso::SAMURAI_Permiso) alignedtext
260 end grestore
261 end grestore
262
263 %       Node37
264 [ /Rect [ 121 61 325 75 ]
265   /Border [ 0 0 0 ]
266   /Action << /Subtype /URI /URI ($classSAMURAI__Permiso.html#a7) >>
267   /Subtype /Link
268 /ANN pdfmark
269 gsave 10 dict begin
270 newpath 121 60 moveto
271 325 60 lineto
272 325 75 lineto
273 121 75 lineto
274 closepath
275 stroke
276 gsave 10 dict begin
277 223 63 moveto 194 -0.5 (SAMURAI_Permiso::_obtenerDatosDb) alignedtext
278 end grestore
279 end grestore
280
281 %       Node36 -> Node37
282 gsave 10 dict begin
283 solid
284 0.667 0.776 0.439 edgecolor
285 newpath 168 112 moveto
286 178 104 194 91 206 82 curveto
287 stroke
288 gsave 10 dict begin
289 solid
290 0.667 0.776 0.439 edgecolor
291 newpath 207 84 moveto
292 213 76 lineto
293 204 81 lineto
294 closepath
295 fill
296 0.667 0.776 0.439 edgecolor
297 end grestore
298 end grestore
299
300 %       Node38
301 [ /Rect [ 0 9 186 23 ]
302   /Border [ 0 0 0 ]
303   /Action << /Subtype /URI /URI ($classSAMURAI__Permiso.html#a3) >>
304   /Subtype /Link
305 /ANN pdfmark
306 gsave 10 dict begin
307 newpath 0 8 moveto
308 187 8 lineto
309 187 23 lineto
310 0 23 lineto
311 closepath
312 stroke
313 gsave 10 dict begin
314 93 11 moveto 177 -0.5 (SAMURAI_Permiso::setDescripcion) alignedtext
315 end grestore
316 end grestore
317
318 %       Node36 -> Node38
319 gsave 10 dict begin
320 solid
321 0.667 0.776 0.439 edgecolor
322 newpath 147 112 moveto
323 137 104 121 91 112 76 curveto
324 103 62 98 44 95 31 curveto
325 stroke
326 gsave 10 dict begin
327 solid
328 0.667 0.776 0.439 edgecolor
329 newpath 98 34 moveto
330 94 24 lineto
331 93 34 lineto
332 closepath
333 fill
334 0.667 0.776 0.439 edgecolor
335 end grestore
336 end grestore
337
338 %       Node37 -> Node38
339 gsave 10 dict begin
340 solid
341 0.667 0.776 0.439 edgecolor
342 newpath 204 60 moveto
343 182 51 145 36 120 27 curveto
344 stroke
345 gsave 10 dict begin
346 solid
347 0.667 0.776 0.439 edgecolor
348 newpath 122 25 moveto
349 112 24 lineto
350 120 30 lineto
351 closepath
352 fill
353 0.667 0.776 0.439 edgecolor
354 end grestore
355 end grestore
356
357 %       Node39
358 [ /Rect [ 204 9 394 23 ]
359   /Border [ 0 0 0 ]
360   /Action << /Subtype /URI /URI ($classSAMURAI__Permiso.html#a5) >>
361   /Subtype /Link
362 /ANN pdfmark
363 gsave 10 dict begin
364 newpath 204 8 moveto
365 395 8 lineto
366 395 23 lineto
367 204 23 lineto
368 closepath
369 stroke
370 gsave 10 dict begin
371 299 11 moveto 181 -0.5 (SAMURAI_Permiso::setResponsable) alignedtext
372 end grestore
373 end grestore
374
375 %       Node37 -> Node39
376 gsave 10 dict begin
377 solid
378 0.667 0.776 0.439 edgecolor
379 newpath 234 60 moveto
380 246 52 266 38 280 29 curveto
381 stroke
382 gsave 10 dict begin
383 solid
384 0.667 0.776 0.439 edgecolor
385 newpath 281 31 moveto
386 288 24 lineto
387 278 27 lineto
388 closepath
389 fill
390 0.667 0.776 0.439 edgecolor
391 end grestore
392 end grestore
393 endpage
394 grestore
395 %%PageTrailer
396 %%EndPage: 1
397 %%Trailer
398 %%Pages: 1
399 end
400 restore
401 %%EOF