diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-14 15:39:29 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-25 12:43:31 (GMT) |
commit | fe818bf8e3a154788a4a180068cfdfbbadd66ff6 (patch) | |
tree | c08545cd15e627b36eef1e0d0a7eb4fa0bb76437 /templates/html/htmlhierarchy.tpl | |
parent | 3ebc431569aa6566389f3f3fc00aae7b8a90e58b (diff) | |
download | Doxygen-fe818bf8e3a154788a4a180068cfdfbbadd66ff6.zip Doxygen-fe818bf8e3a154788a4a180068cfdfbbadd66ff6.tar.gz Doxygen-fe818bf8e3a154788a4a180068cfdfbbadd66ff6.tar.bz2 |
Added graphical hierarchy support to template engine
Diffstat (limited to 'templates/html/htmlhierarchy.tpl')
-rw-r--r-- | templates/html/htmlhierarchy.tpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/html/htmlhierarchy.tpl b/templates/html/htmlhierarchy.tpl new file mode 100644 index 0000000..5d03755 --- /dev/null +++ b/templates/html/htmlhierarchy.tpl @@ -0,0 +1,17 @@ +{% extend 'htmlbase.tpl' %} +{% block content %} +<div class="contents"> +<div class="textblock"> +<p>{{ tr.classHierarchyDescription }}</p> +{% if config.HAVE_DOT and config.GRAPHICAL_HIERARCHY %} +<p><a href="inherits{{ config.HTML_FILE_EXTENSION }}">{{ tr.gotoGraphicalHierarchy }}</a></p> +{% endif %} +</div> +{% indexentry nav name=tr.classHierarchy file=page.fileName anchor='' %} +{% opensubindex nav %} +{% with tree=classHierarchy %} + {% include 'htmldirtree.tpl' %} +{% endwith %} +{% closesubindex nav %} +</div> +{% endblock %} |