summaryrefslogtreecommitdiff
path: root/templates/html/htmltypeconstraints.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmltypeconstraints.tpl')
-rw-r--r--templates/html/htmltypeconstraints.tpl13
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/html/htmltypeconstraints.tpl b/templates/html/htmltypeconstraints.tpl
deleted file mode 100644
index ccb3579..0000000
--- a/templates/html/htmltypeconstraints.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-{# obj should be a class or member #}
-{% if obj.typeConstraints %}
- <div class="typeconstraint">
- <dl><dt><b>{{ tr.typeConstraints }}</b></dt>
- <dd><table border="0" cellspacing="2" cellpadding="0">
- {% for arg in obj.typeConstraints %}
- <tr><td valign="top"><em>{{ arg.name }}</em></td>
- <td>&#160;</td><td valign="top"><em>{{ arg.type }}</em></td>
- <td>&#160;</td><td>{{ arg.docs }}</td>
- </tr>
- {% endfor %}
- </table></dl></div>
-{% endif %}