Doxygen: Properly document and handle version.h.

This commit is contained in:
Uwe Hermann 2013-04-06 19:25:03 +02:00
parent ca0938c50b
commit c27e5f1e82
2 changed files with 16 additions and 3 deletions

View File

@ -23,13 +23,13 @@
/** /**
* @file * @file
* *
* Version number querying functions. * Version number querying functions, definitions, and macros.
*/ */
/** /**
* @defgroup grp_versions Versions * @defgroup grp_versions Versions
* *
* Version number querying functions. * Version number querying functions, definitions, and macros.
* *
* @{ * @{
*/ */

View File

@ -20,6 +20,18 @@
#ifndef LIBSIGROK_VERSION_H #ifndef LIBSIGROK_VERSION_H
#define LIBSIGROK_VERSION_H #define LIBSIGROK_VERSION_H
/**
* @file
*
* Version number definitions and macros.
*/
/**
* @ingroup grp_versions
*
* @{
*/
/* /*
* Package version macros (can be used for conditional compilation). * Package version macros (can be used for conditional compilation).
*/ */
@ -52,5 +64,6 @@
/** The libsigrok libtool version ("current:revision:age") as string. */ /** The libsigrok libtool version ("current:revision:age") as string. */
#define SR_LIB_VERSION_STRING "@SR_LIB_VERSION@" #define SR_LIB_VERSION_STRING "@SR_LIB_VERSION@"
#endif /** @} */
#endif