diff options
author | David Robillard <d@drobilla.net> | 2010-12-16 21:26:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-16 21:26:02 +0000 |
commit | d1347230fec58e43ab4ae753ccd8d34a4f97d1ec (patch) | |
tree | 3d8df8167d9790d3b78df9a4c3a82b45823e8e10 | |
parent | 50701a1143c836d24d368298ee9068e721c8a066 (diff) | |
download | ingen-d1347230fec58e43ab4ae753ccd8d34a4f97d1ec.tar.gz ingen-d1347230fec58e43ab4ae753ccd8d34a4f97d1ec.tar.bz2 ingen-d1347230fec58e43ab4ae753ccd8d34a4f97d1ec.zip |
Update Doxygen file.
Fix Doxygen warning (partially documented function).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2721 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | doc/reference.doxygen.in | 15 | ||||
-rw-r--r-- | src/engine/PatchImpl.hpp | 2 |
2 files changed, 14 insertions, 3 deletions
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in index 753d6531..bf6ac870 100644 --- a/doc/reference.doxygen.in +++ b/doc/reference.doxygen.in @@ -515,7 +515,7 @@ LAYOUT_FILE = # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. -QUIET = NO +QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank @@ -568,7 +568,16 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @INGEN_SRCDIR@ +INPUT = \ + @INGEN_SRCDIR@/src/client \ + @INGEN_SRCDIR@/src/common \ + @INGEN_SRCDIR@/src/common/interface \ + @INGEN_SRCDIR@/src/engine \ + @INGEN_SRCDIR@/src/gui \ + @INGEN_SRCDIR@/src/ingen \ + @INGEN_SRCDIR@/src/module \ + @INGEN_SRCDIR@/src/serialisation \ + @INGEN_SRCDIR@/src/shared # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -591,7 +600,7 @@ FILE_PATTERNS = # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. -RECURSIVE = YES +RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a diff --git a/src/engine/PatchImpl.hpp b/src/engine/PatchImpl.hpp index 89d00e7d..77f2cb43 100644 --- a/src/engine/PatchImpl.hpp +++ b/src/engine/PatchImpl.hpp @@ -76,6 +76,8 @@ public: * * Audio thread. * + * \param context Process context + * \param bufs New set of buffers * \param poly Must be < the most recent value passed to prepare_internal_poly. * \param maid Any objects no longer needed will be pushed to this */ |