mirror of
https://github.com/Telecominfraproject/oopt-tai.git
synced 2026-01-27 10:22:03 +00:00
28 lines
478 B
C
28 lines
478 B
C
#ifndef __TAI_BASIC_MODULE__
|
|
#define __TAI_BASIC_MODULE__
|
|
|
|
#include <tai.h>
|
|
|
|
typedef enum _basic_module_attr_t
|
|
{
|
|
/**
|
|
* @brief Custom attribute example
|
|
*
|
|
* @type bool
|
|
* @flags CREATE_AND_SET
|
|
*/
|
|
TAI_MODULE_ATTR_CUSTOM = TAI_MODULE_ATTR_CUSTOM_RANGE_START,
|
|
|
|
/**
|
|
* @brief Custom list attribute example
|
|
*
|
|
* @type tai_u32_list_t
|
|
* @flags CREATE_AND_SET
|
|
*/
|
|
TAI_MODULE_ATTR_CUSTOM_LIST,
|
|
|
|
|
|
} basic_module_attr_t;
|
|
|
|
#endif
|