diff --git a/doc/Doxyfile b/doc/Doxyfile index d8c18a8ff63..58622b34ff8 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -623,7 +623,8 @@ INPUT = doxygen.main \ ../source/blender/makesdna \ ../source/blender/makesrna \ ../intern/ghost \ - ../source/blender/blenloader + ../source/blender/blenloader \ + ../source/blender/readblenfile # 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 diff --git a/doc/doxygen.main b/doc/doxygen.main index c5a3ee3dd28..c7db6539cbe 100644 --- a/doc/doxygen.main +++ b/doc/doxygen.main @@ -87,6 +87,10 @@ * \ingroup data */ +/** \defgroup readblenfile readblenfile + * \ingroup data + */ + /** \defgroup gui GUI */ /** \defgroup wm windowmanager diff --git a/source/blender/readblenfile/BLO_readblenfile.h b/source/blender/readblenfile/BLO_readblenfile.h index 14143db4bc5..a928148f208 100644 --- a/source/blender/readblenfile/BLO_readblenfile.h +++ b/source/blender/readblenfile/BLO_readblenfile.h @@ -1,4 +1,4 @@ -/** +/* * $Id$ * * ***** BEGIN GPL LICENSE BLOCK ***** @@ -31,6 +31,10 @@ #ifndef BLO_READBLENFILE_H #define BLO_READBLENFILE_H +/** \file BLO_readblenfile.h + * \ingroup readblenfile + */ + #ifdef __cplusplus extern "C" { #endif