talkatu/talkatu

c7a4815f9984
Parents 2ec0b1e0ddc0
Children 4e2c0fb2c676
Clean up some missing documentation on TalkatuMessage
--- a/talkatu/talkatumessage.c Wed Feb 05 00:33:41 2020 -0600
+++ b/talkatu/talkatumessage.c Wed Feb 05 00:40:13 2020 -0600
@@ -44,10 +44,24 @@
/**
* TalkatuMessageInterface:
+ * @add_attachment: The add_attachment vfunc is called to add an attachment to
+ * the message.
+ * @remove_attachment: The remove_attachment vfunc is called to remove an
+ * attachment from the message.
+ * @get_attachment: The get_attachment vfunc gets an attachment from the
+ * message.
+ * @foreach_attachment: The foreach_attachment vfunc is called to call a
+ * TalkatuForeachAttachmentFunc for each attachment in the
+ * message.
+ * @clear_attachments: The clear_attachments vfunc is called to clear all
+ * attachments from the message.
*
- * #TalkatuMessage is an interface to be implemented to standardize the way
+ * #TalkatuMessage is an interface to be implemented that standardizes the way
* messages are handled. All of its properties should be overridden with a
* sensible value returned for them.
+ *
+ * It also needs to implement a storage mechanism for attachments which are
+ * identified by a #guint64.
*/
/**