Monotone-Parent: cd56286d917362c02385175d3f2f34744449e59d

Monotone-Revision: 55094f9b3879e2695c7e1e15777fdf117118b525

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-04T23:01:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-08-04 23:01:12 +00:00
parent 9d657fbf0a
commit e2f6f553b1
2 changed files with 47 additions and 5 deletions
+15 -4
View File
@@ -26,9 +26,9 @@
/*
SOGoContactFolder
Parent object: the SOGoUserFolder
Parent object: the user's SOGoUserFolders
Child objects: SOGoContactObject
The SOGoContactFolder maps to an GCS folder of type 'contact', that
is, a content folder containing vcal?? files (and a proper quicktable).
*/
@@ -36,12 +36,23 @@
@class NSString, NSArray, NSCalendarDate, NSException;
@class GCSFolder;
@class SOGoContactSource;
@interface SOGoContactFolder : SOGoFolder
{
}
/* fetching */
+ (id) contactFolderWithSource: (SOGoContactSource *) source
inContainer: (SOGoObject *) newContainer
andName: (NSString *) name;
- (id) initWithSource: (SOGoContactSource *) source
inContainer: (SOGoObject *) newContainer
andName: (NSString *) name;
- (void) setContactSource: (SOGoContactSource *) source
andName: name;
- (NSArray *)fetchCoreInfos;
@end