Monotone-Parent: 6fefb8e8d4a1210e81a21ab84cc5198b17561ef7

Monotone-Revision: fb60412527e7f4014c210dfce058ab3223d60fe5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-01T18:44:41
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2007-08-01 18:44:41 +00:00
parent a18c5aef1e
commit 8868e45882
2 changed files with 16 additions and 9 deletions

View file

@ -22,7 +22,7 @@
#ifndef __Mailer_SOGoMailBodyPart_H__ #ifndef __Mailer_SOGoMailBodyPart_H__
#define __Mailer_SOGoMailBodyPart_H__ #define __Mailer_SOGoMailBodyPart_H__
#include <Mailer/SOGoMailBaseObject.h> #import <Mailer/SOGoMailBaseObject.h>
/* /*
SOGoMailBodyPart SOGoMailBodyPart
@ -45,21 +45,23 @@
/* hierarchy */ /* hierarchy */
- (SOGoMailObject *)mailObject; - (SOGoMailObject *) mailObject;
/* IMAP4 */ /* IMAP4 */
- (NSString *)bodyPartName; - (NSString *) bodyPartName;
- (NSArray *)bodyPartPath; - (NSArray *) bodyPartPath;
- (NSString *)bodyPartIdentifier; - (NSString *) bodyPartIdentifier;
/* part info */ /* part info */
- (id)partInfo; - (id) partInfo;
- (NSData *) fetchBLOB;
/* factory */ /* factory */
+ (Class)bodyPartClassForKey:(NSString *)_key inContext:(id)_ctx; + (Class) bodyPartClassForKey: (NSString *) _key
inContext: (id) _ctx;
@end @end

View file

@ -19,8 +19,13 @@
02111-1307, USA. 02111-1307, USA.
*/ */
#include "SOGoSharedMailAccount.h" #import <Foundation/NSArray.h>
#include "common.h" #import <Foundation/NSString.h>
#import <Foundation/NSUserDefaults.h>
#import <NGImap4/NGImap4Connection.h>
#import "SOGoSharedMailAccount.h"
@interface SOGoMailAccount(UsedPrivates) @interface SOGoMailAccount(UsedPrivates)