# HG changeset patch # User David Demelier # Date 1467220719 -7200 # Node ID c79a501782b00076b6361b4b9a9190e114b2b095 # Parent dcef88285f8c834bccda0a196d84af70bf8a26b5 Docs: add misc/ folder to Doxygen diff -r dcef88285f8c -r c79a501782b0 cmake/Doxyfile.in --- a/cmake/Doxyfile.in Wed Jun 29 19:12:10 2016 +0200 +++ b/cmake/Doxyfile.in Wed Jun 29 19:18:39 2016 +0200 @@ -754,7 +754,7 @@ # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = @CMAKE_SOURCE_DIR@/modules/ +INPUT = @CMAKE_SOURCE_DIR@/modules/ @CMAKE_SOURCE_DIR@/misc # 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 diff -r dcef88285f8c -r c79a501782b0 misc/clamp.hpp --- a/misc/clamp.hpp Wed Jun 29 19:12:10 2016 +0200 +++ b/misc/clamp.hpp Wed Jun 29 19:18:39 2016 +0200 @@ -16,6 +16,11 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +/** + * \file clamp.hpp + * \brief Clamp function + */ + #include /** diff -r dcef88285f8c -r c79a501782b0 misc/join.hpp --- a/misc/join.hpp Wed Jun 29 19:12:10 2016 +0200 +++ b/misc/join.hpp Wed Jun 29 19:18:39 2016 +0200 @@ -17,6 +17,11 @@ */ /** + * \file join.hpp + * \brief Join function + */ + +/** * Join values by a separator and return a string. * * \param first the first iterator diff -r dcef88285f8c -r c79a501782b0 misc/strip.hpp --- a/misc/strip.hpp Wed Jun 29 19:12:10 2016 +0200 +++ b/misc/strip.hpp Wed Jun 29 19:18:39 2016 +0200 @@ -16,6 +16,11 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +/** + * \file strip.hpp + * \brief Strip function + */ + #include #include