summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebarshi Ray <debarshir@freedesktop.org>2013-01-21 13:45:04 +0100
committerDebarshi Ray <debarshir@freedesktop.org>2013-01-21 15:01:07 +0100
commit33ba3a6a506f907f5c9902156941c188803490fb (patch)
tree2869efba1fc09639fb0d7354475577f295d4cefc
parent2332f4c6c6445616672617b587addc7211d3e99a (diff)
downloadtelepathy-logger-33ba3a6a506f907f5c9902156941c188803490fb.tar.gz
log-walker: Add since tags to docstrings
-rw-r--r--telepathy-logger/log-walker.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/telepathy-logger/log-walker.c b/telepathy-logger/log-walker.c
index c6bf787..66a5c1c 100644
--- a/telepathy-logger/log-walker.c
+++ b/telepathy-logger/log-walker.c
@@ -168,12 +168,16 @@
* }
* </programlisting>
* </example>
+ *
+ * Since: UNRELEASED
*/
/**
* TplLogWalker:
*
* An object used to iterate over the logs
+ *
+ * Since: UNRELEASED
*/
struct _TplLogWalkerPriv
@@ -771,6 +775,8 @@ tpl_log_walker_add_iter (TplLogWalker *walker, TplLogIter *iter)
* @user_data: data to pass to @callback
*
* Walk the logs to retrieve the next most recent @num_event events.
+ *
+ * Since: UNRELEASED
*/
void
tpl_log_walker_get_events_async (TplLogWalker *walker,
@@ -815,6 +821,8 @@ tpl_log_walker_get_events_async (TplLogWalker *walker,
* @error: a #GError to fill
*
* Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ *
+ * Since: UNRELEASED
*/
gboolean
tpl_log_walker_get_events_finish (TplLogWalker *walker,
@@ -856,6 +864,8 @@ tpl_log_walker_get_events_finish (TplLogWalker *walker,
*
* Move the @walker back by the last @num_event events that were
* returned by tpl_log_walker_get_events_async().
+ *
+ * Since: UNRELEASED
*/
void
tpl_log_walker_rewind_async (TplLogWalker *walker,
@@ -898,6 +908,8 @@ tpl_log_walker_rewind_async (TplLogWalker *walker,
* @error: a #GError to fill
*
* Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ *
+ * Since: UNRELEASED
*/
gboolean
tpl_log_walker_rewind_finish (TplLogWalker *walker,
@@ -929,6 +941,8 @@ tpl_log_walker_rewind_finish (TplLogWalker *walker,
*
* Returns: #TRUE if @walker is pointing at the most recent event,
* otherwise #FALSE.
+ *
+ * Since: UNRELEASED
*/
gboolean
tpl_log_walker_is_start (TplLogWalker *walker)
@@ -948,6 +962,8 @@ tpl_log_walker_is_start (TplLogWalker *walker)
* when @walker has returned all the events from the logs.
*
* Returns: #TRUE if @walker has run out of events, otherwise #FALSE.
+ *
+ * Since: UNRELEASED
*/
gboolean
tpl_log_walker_is_end (TplLogWalker *walker)