From: Takashi Sakamoto Date: Mon, 20 Jun 2022 09:44:49 +0000 (+0900) Subject: timer: device-params: add annotation to object properties X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=d0774d1eddd241fb8a6b915705efe5864b4aca23;p=alsa-gobject.git timer: device-params: add annotation to object properties Signed-off-by: Takashi Sakamoto --- diff --git a/src/timer/device-params.c b/src/timer/device-params.c index c6480c1..0840be3 100644 --- a/src/timer/device-params.c +++ b/src/timer/device-params.c @@ -69,6 +69,11 @@ static void alsatimer_device_params_class_init(ALSATimerDeviceParamsClass *klass gobject_class->set_property = timer_device_params_set_property; gobject_class->get_property = timer_device_params_get_property; + /** + * ALSATimerDeviceParams:period-numerator: + * + * The numerator of period for timer. + */ timer_device_params_props[TIMER_DEVICE_PARAMS_PROP_PERIOD_NUM] = g_param_spec_uint64("period-numerator", "period-numerator", "The numerator of period for timer.", @@ -76,6 +81,11 @@ static void alsatimer_device_params_class_init(ALSATimerDeviceParamsClass *klass 0, G_PARAM_READWRITE); + /** + * ALSATimerDeviceParams:period-denominator: + * + * The denominator of period for timer. + */ timer_device_params_props[TIMER_DEVICE_PARAMS_PROP_PERIOD_DEN] = g_param_spec_uint64("period-denominator", "period-denominator", "The denominator of period for timer.",