[anjuta/sdb-queries] symbol-db: Added query stubs
- From: Naba Kumar <naba src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta/sdb-queries] symbol-db: Added query stubs
- Date: Sat, 12 Jun 2010 23:00:41 +0000 (UTC)
commit 6067fbc3bab0cba1c1230369fd2e0f77c938f9ce
Author: Naba Kumar <naba gnome org>
Date: Sun Jun 13 01:44:14 2010 +0300
symbol-db: Added query stubs
plugins/symbol-db/symbol-db-query.c | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
---
diff --git a/plugins/symbol-db/symbol-db-query.c b/plugins/symbol-db/symbol-db-query.c
index 7587613..28c0de3 100644
--- a/plugins/symbol-db/symbol-db-query.c
+++ b/plugins/symbol-db/symbol-db-query.c
@@ -953,6 +953,13 @@ sdb_query_search_file (IAnjutaSymbolQuery *query, const gchar *search_string,
}
static IAnjutaIterable*
+sdb_query_search_in_scope (IAnjutaSymbolQuery *query, const gchar *pattern,
+ IAnjutaSymbol *scope, GError **error)
+{
+ return NULL; /* FIXME */
+}
+
+static IAnjutaIterable*
sdb_query_search_id (IAnjutaSymbolQuery *query, gint symbol_id,
GError **error)
{
@@ -1031,6 +1038,13 @@ sdb_query_search_parent_scope_file (IAnjutaSymbolQuery *query, IAnjutaSymbol *sy
return sdb_query_execute (SYMBOL_DB_QUERY (query));
}
+static IAnjutaIterable*
+sdb_query_search_scope_chain (IAnjutaSymbolQuery *query, const gchar *file_path,
+ gint file_line, GError **error)
+{
+ return NULL; /* FIXME */
+}
+
static void
ianjuta_symbol_query_iface_init (IAnjutaSymbolQueryIface *iface)
{
@@ -1044,12 +1058,14 @@ ianjuta_symbol_query_iface_init (IAnjutaSymbolQueryIface *iface)
iface->search = sdb_query_search;
iface->search_all = sdb_query_search_all;
iface->search_file = sdb_query_search_file;
+ iface->search_in_scope = sdb_query_search_in_scope;
iface->search_id = sdb_query_search_id;
iface->search_members = sdb_query_search_members;
iface->search_class_parents = sdb_query_search_class_parents;
iface->search_scope = sdb_query_search_scope;
iface->search_parent_scope = sdb_query_search_parent_scope;
iface->search_parent_scope_file = sdb_query_search_parent_scope_file;
+ iface->search_scope_chain = sdb_query_search_scope_chain;
}
SymbolDBQuery *
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]