aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/abstract/MCOAbstractMessage.h
diff options
context:
space:
mode:
authorGravatar CodaFi <devteam.codafi@gmail.com>2013-06-22 20:38:22 -0600
committerGravatar CodaFi <devteam.codafi@gmail.com>2013-06-22 20:38:22 -0600
commiteb8b3fe42b0fc2fcaf9d5ca3f7570ccbbe99b02c (patch)
treecba7b6eea1ae818437749cac07b36b5e0e531b5d /src/objc/abstract/MCOAbstractMessage.h
parenta24460880422f224c7d0ab906207bd5af7e0e8fc (diff)
parent74752eb7c987a2c1704f6f92486e4a4d3f77cbfb (diff)
Merge remote-tracking branch 'upstream/master' into NSCoding-NSCopying
Diffstat (limited to 'src/objc/abstract/MCOAbstractMessage.h')
-rw-r--r--src/objc/abstract/MCOAbstractMessage.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/objc/abstract/MCOAbstractMessage.h b/src/objc/abstract/MCOAbstractMessage.h
index a5c2cc1b..d60bfe8c 100644
--- a/src/objc/abstract/MCOAbstractMessage.h
+++ b/src/objc/abstract/MCOAbstractMessage.h
@@ -26,11 +26,17 @@
/** Returns the part with the given unique identifier.*/
- (MCOAbstractPart *) partForUniqueID:(NSString *)uniqueID;
-/** All attachments in the message */
-- (NSArray *) attachments;
-
-/** All HTML bodies */
-- (NSArray *) htmlInlineAttachments;
+/** All attachments in the message.
+ It will return an array of MCOIMAPPart for MCOIMAPMessage.
+ It will return an array of MCOAttachment for MCOMessageParser.
+ It will return an array of MCOAttachment for MCOMessageBuilder. */
+- (NSArray * /* MCOAbstractPart */) attachments;
+
+/** All image attachments included inline in the message through cid: URLs.
+ It will return an array of MCOIMAPPart for MCOIMAPMessage.
+ It will return an array of MCOAttachment for MCOMessageParser.
+ It will return an array of MCOAttachment for MCOMessageBuilder. */
+- (NSArray * /* MCOAbstractPart */) htmlInlineAttachments;
@end