Definition in file qofquerycore.h.
#include "gnc-numeric.h"
#include "gnc-date.h"
#include "kvp_frame.h"
#include "qofclass.h"
Go to the source code of this file.
|
Copy a predicate. Definition at line 1843 of file qofquerycore.c. |
|
Destroy a predicate. Definition at line 1831 of file qofquerycore.c. |
|
Return a printable string for a core data object. Caller needs to g_free() the returned string. Definition at line 1855 of file qofquerycore.c. |
|
Retrieve a predicate. Definition at line 403 of file qofquerycore.c.
|
|
The qof_query_kvp_predicate() matches the object that has the value 'value' located at the path 'path'. In a certain sense, the 'path' is handled as if it were a paramter. Definition at line 1259 of file qofquerycore.c. 01267 { 01268 spath = g_slist_append (spath, p); 01269 p = strchr (p, '/'); 01270 if (p) { *p = 0; p++; } 01271 } 01272 01273 pd = qof_query_kvp_predicate (how, spath, value); 01274 g_free (str); 01275 return pd; 01276 }
|
|
Same predicate as above, except that 'path' is assumed to be a string containing slash-separated pathname. |