Convert DEBUG_REFERRALS to TRACE_* framework
[krb5.git] / doc / rst_tools / type_document.tmpl
1 .. highlightlang:: c
2
3 .. $composite.struct_reference($composite.name):
4
5 #set $title = $composite.name
6 $title
7 #echo ''.join(['=']*len($title)) #
8
9 ..
10 .. c:type:: $composite.name
11 ..
12
13 #if $composite.short_description is not None and len($composite.short_description)
14 $composite.short_description
15 #end if
16
17 $composite.long_description
18
19 Declaration
20 ------------
21
22 $composite.definition
23
24 #if $composite.Id is not None 
25 #if len($composite.attributes)
26
27 Members
28 ---------
29
30 #end if
31
32 #for $attr in $composite.attributes:    
33 #if $attr.name is not None
34 .. c:member:: $attr.type        $composite.name.$attr.name 
35
36                                              $attr.short_description
37 #if $attr.long_description is not None
38                                              $attr.long_description                  
39 #end if
40                                
41 #end if
42 #end for
43 #end if