trigger.c: Add Doxygen @file and @defgroup tags.

This commit is contained in:
Uwe Hermann 2014-08-10 18:56:24 +02:00
parent 071b93d9ed
commit 9fcc286604
1 changed files with 16 additions and 0 deletions

View File

@ -24,6 +24,20 @@
#define LOG_PREFIX "trigger"
/* * @endcond */
/**
* @file
*
* Creating, using, or destroying triggers.
*/
/**
* @defgroup grp_trigger Trigger handling
*
* Creating, using, or destroying triggers.
*
* @{
*/
SR_API struct sr_trigger *sr_trigger_new(const char *name)
{
struct sr_trigger *trig;
@ -94,3 +108,5 @@ SR_API int sr_trigger_match_add(struct sr_trigger_stage *stage,
return SR_OK;
}
/** @} */