]> err.no Git - scalable-opengroupware.org/blobdiff - SoObjects/Contacts/SOGoContactLDAPFolder.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1257 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / Contacts / SOGoContactLDAPFolder.h
index dd2f9bfc76ae447b169d510c49324f8db5cd54e9..c8465e5bd44e4ed33a9928d6c09dc6cc11d7036d 100644 (file)
 #define SOGOCONTACTLDAPFOLDER_H
 
 #import "SOGoContactFolder.h"
+#import "SOGoFolder+CardDAV.h"
 
 @class NSMutableDictionary;
 
 @class LDAPSource;
 
-@interface SOGoContactLDAPFolder : SOGoObject <SOGoContactFolder>
+@interface SOGoContactLDAPFolder : SOGoFolder <SOGoContactFolder>
 {
-  NSString *name;
-  NSString *displayName;
   LDAPSource *ldapSource;
   NSMutableDictionary *entries;
 }
 
-- (id <SOGoContactFolder>) initWithName: (NSString *) newName
-                         andDisplayName: (NSString *) newDisplayName
-                            inContainer: (SOGoObject *) newContainer;
++ (id) folderWithName: (NSString *) aName
+       andDisplayName: (NSString *) aDisplayName
+         inContainer: (id) aContainer;
+- (id) initWithName: (NSString *) newName
+     andDisplayName: (NSString *) newDisplayName
+       inContainer: (id) newContainer;
 - (void) setLDAPSource: (LDAPSource *) newLdapSource;
 
 @end