]> err.no Git - scalable-opengroupware.org/blob - SOPE/NGCards/iCalObject.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1229 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SOPE / NGCards / iCalObject.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #import <Foundation/NSString.h>
23
24 #import "iCalObject.h"
25
26 @implementation iCalObject
27
28 + (int)version {
29   return 0;
30 }
31
32 // what shall we take, if no timeZone is specified in dateValues
33 static NSTimeZone *defTZ = nil;
34 + (void)setICalDefaultTimeZone:(NSTimeZone *)_timeZone {
35   ASSIGNCOPY(defTZ,_timeZone);
36 }
37 + (NSTimeZone *)iCalDefaultTimeZone {
38   return defTZ;
39 }
40
41 - (void)dealloc {
42   [super dealloc];
43 }
44
45 /* NSCopying */
46
47 - (id)copyWithZone:(NSZone *)_zone {
48   iCalObject *new;
49   
50   new = [[[self class] allocWithZone:_zone] init];
51   return new;
52 }
53
54 /* KVC */
55
56 - (void)takeValue:(id)_value forXKey:(id)_key {
57   /* extended keys are ignored by default */
58 }
59
60 - (void)handleTakeValue:(id)_value forUnboundKey:(NSString *)_key {
61   if ([_key hasPrefix:@"X-"]) {
62     [self takeValue:_value forXKey:_key];
63   }
64   else {
65     NSLog(@"0x%08x[%@]: ignoring attempt to set unbound key '%@'",
66           self, NSStringFromClass([self class]), _key);
67   }
68 }
69
70 @end /* iCalObject */