summaryrefslogtreecommitdiff
path: root/src/analysis/db/collection-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-09-29 21:57:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-09-29 21:57:42 (GMT)
commitc434b8ccaae01810903e098ad8e66f8ead3141eb (patch)
tree9d0938011c37af7e297183e65b653360bcfaf315 /src/analysis/db/collection-int.h
parent3a83a06db8ee27eafcd0219d1d26bf2af23737f5 (diff)
Removed useless features from DB collections.
Diffstat (limited to 'src/analysis/db/collection-int.h')
-rw-r--r--src/analysis/db/collection-int.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/analysis/db/collection-int.h b/src/analysis/db/collection-int.h
index c9d37bf..1355592 100644
--- a/src/analysis/db/collection-int.h
+++ b/src/analysis/db/collection-int.h
@@ -38,9 +38,6 @@ typedef bool (* collec_create_db_table_fc) (const GDbCollection *, sqlite3 *);
/* Charge les valeurs utiles pour une localisation. */
typedef bool (* collec_load_item) (GDbCollection *, const bound_value *, size_t);
-/* Détermine si un élément est déjà présent ou non. */
-typedef GDbItem * (* collec_has_key_fc) (GDbCollection *, va_list);
-
/* Collection générique d'éléments (instance) */
@@ -69,7 +66,6 @@ struct _GDbCollectionClass
collec_create_db_table_fc create_table; /* Création de la table en SQL */
collec_load_item load_item; /* Charge un élément */
- collec_has_key_fc has_key; /* Recherche de présence */
/* Signaux */