sogo/SoObjects/Contacts/SOGoContactLDIFEntry.h
Wolfgang Sourdeau 5e21997cc4 Monotone-Parent: 00c7db6a04b837e2c03bee73c5699a0bafaf4684
Monotone-Revision: b4d434073c4829245e196a7cbb5d657675d0c67e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-08T15:10:40
Monotone-Branch: ca.inverse.sogo
2007-05-08 15:10:40 +00:00

51 lines
1.6 KiB
Objective-C

/* SOGoContactLDAPEntry.h - this file is part of SOGo
* Copyright (C) 2006 Inverse groupe conseil
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef SOGOCONTACTLDAPENTRY_H
#define SOGOCONTACTLDAPENTRY_H
#import <SOGo/SOGoObject.h>
#import "SOGoContactObject.h"
@class NSString;
@class SOGoContactLDAPFolder;
@class NGLdapEntry;
@interface SOGoContactLDAPEntry : NSObject <SOGoContactObject>
{
NSString *name;
NGLdapEntry *ldapEntry;
NGVCard *vcard;
id container;
}
+ (SOGoContactLDAPEntry *) contactEntryWithName: (NSString *) newName
withLDAPEntry: (NGLdapEntry *) newEntry
inContainer: (id) newContainer;
- (id) initWithName: (NSString *) newName
withLDAPEntry: (NGLdapEntry *) newEntry
inContainer: (id) newContainer;
@end
#endif /* SOGOCONTACTLDAPENTRY_H */