From c5688830f7caa26f587d89061754f0b16acd5615 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sat, 26 Jul 2003 04:58:55 +0000 Subject: [PATCH] add documentation git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8926 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/qofquery.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/engine/qofquery.h b/src/engine/qofquery.h index 3075050831..b45a7819cc 100644 --- a/src/engine/qofquery.h +++ b/src/engine/qofquery.h @@ -140,9 +140,15 @@ GList * qof_query_run (QofQuery *query); */ GList * qof_query_last_run (QofQuery *query); +/** DOCUMENT ME !! */ void qof_query_clear (QofQuery *query); +/** DOCUMENT ME !! */ void qof_query_purge_terms (QofQuery *q, GSList *param_list); + +/** Return boolean FALSE if there are no terms in the query */ int qof_query_has_terms (QofQuery *q); + +/** Return the number of terms in thq query. */ int qof_query_num_terms (QofQuery *q); gboolean qof_query_has_term_type (QofQuery *q, GSList *term_param);