summaryrefslogtreecommitdiff
path: root/src/analysis/db/items/comment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/db/items/comment.h')
-rw-r--r--src/analysis/db/items/comment.h38
1 files changed, 33 insertions, 5 deletions
diff --git a/src/analysis/db/items/comment.h b/src/analysis/db/items/comment.h
index 792fb92..316f4c5 100644
--- a/src/analysis/db/items/comment.h
+++ b/src/analysis/db/items/comment.h
@@ -35,11 +35,7 @@
-/* Crée la table des commentaires dans une base de données. */
-bool create_comment_db_table(sqlite3 *);
-
-
-
+/* --------------------- ELABORATION D'UN ELEMENT DE COLLECTION --------------------- */
#define G_TYPE_DB_COMMENT g_db_comment_get_type()
@@ -74,4 +70,36 @@ void g_db_comment_set_text(GDbComment *, const char *);
+
+
+
+
+
+
+/* ---------------------- DEFINITION DE LA COLLECTION ASSOCIEE ---------------------- */
+
+
+#define G_TYPE_COMMENT_COLLECTION g_comment_collection_get_type()
+#define G_COMMENT_COLLECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_comment_collection_get_type(), GCommentCollection))
+#define G_IS_COMMENT_COLLECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_comment_collection_get_type()))
+#define G_COMMENT_COLLECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_COMMENT_COLLECTION, GCommentCollectionClass))
+#define G_IS_COMMENT_COLLECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_COMMENT_COLLECTION))
+#define G_COMMENT_COLLECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_COMMENT_COLLECTION, GCommentCollectionClass))
+
+
+/* Collection dédiée aux commentaires textuels (instance) */
+typedef struct _GCommentCollection GCommentCollection;
+
+/* Collection dédiée aux commentaires textuels (classe) */
+typedef struct _GCommentCollectionClass GCommentCollectionClass;
+
+
+/* Indique le type défini pour une collection de commentaires. */
+GType g_comment_collection_get_type(void);
+
+/* Crée une collection dédiée aux commentaires. */
+GCommentCollection *g_comment_collection_new(void);
+
+
+
#endif /* _ANALYSIS_DB_ITEMS_COMMENT_H */