diff options
author | David Robillard <d@drobilla.net> | 2016-12-17 22:32:34 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-02-26 14:59:00 +0100 |
commit | c8b942918517fdeefd9886bfbae1d00ec62d47b0 (patch) | |
tree | 613a0f78b1dc00c0f40ad03805c568cadf634077 /doc | |
parent | 56f064dce822a53ad668c38d1bb7b2b3025fe270 (diff) | |
download | lv2-c8b942918517fdeefd9886bfbae1d00ec62d47b0.tar.xz |
Add C++ bindings
Diffstat (limited to 'doc')
-rw-r--r-- | doc/doxy-style.css | 2 | ||||
-rw-r--r-- | doc/reference.doxygen.in | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/doxy-style.css b/doc/doxy-style.css index f6ff8bb..29ef6d8 100644 --- a/doc/doxy-style.css +++ b/doc/doxy-style.css @@ -1,4 +1,5 @@ body { + font-family: sans-serif; max-width: 80em; margin: 0; margin-left: auto; @@ -347,6 +348,7 @@ td.mlabels-right { .memtemplate { color: #4665A2; font-weight: bold; + padding-left: 6px; } .memnav { diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in index ff210f4..a8c362e 100644 --- a/doc/reference.doxygen.in +++ b/doc/reference.doxygen.in @@ -431,7 +431,7 @@ EXTRACT_ALL = NO # be included in the documentation. # The default value is: NO. -EXTRACT_PRIVATE = YES +EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. @@ -808,7 +808,9 @@ INPUT = @LV2_SRCDIR@/doc/mainpage.dox \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/worker/worker.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/extensions/ui/ui.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/extensions/units/units.h \ - @LV2_SRCDIR@/lv2/lv2plug.in/ns/lv2core/lv2.h + @LV2_SRCDIR@/lv2/lv2plug.in/ns/lv2core/lv2.h \ + @LV2_SRCDIR@/lv2/lv2plug.in/ns/lv2core/Plugin.hpp \ + @LV2_SRCDIR@/lv2/lv2plug.in/ns/lv2core/Lib.hpp # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses |