summaryrefslogtreecommitdiffhomepage
path: root/templates/default/header/html/define_summary.erb
blob: d4f28e87b017b92a2c2d93cc6cc5ad460831cf15 (plain)
1
2
3
4
5
6
7
8
9
10
11
<% if define_listing.size > 0 %>
  <h2>Define Summary</h2>
  <dl class="constants">
    <% define_listing.each do |define| %>
      <dt id="<%= anchor_for(define) %>" class="<%= define.has_tag?(:deprecated) ? 'deprecated' : '' %>"><small>#define</small> <%= define.name %>
        <%= yieldall :object => define %>
      </dt>
      <dd><pre class="code"><%#= format_constant define.value %></pre></dd>
    <% end %>
  </dl>
<% end %>