]> err.no Git - sope/blob - sope-appserver/NGObjWeb/WOAdaptor.m
Improved WORepetition's implementation to be more convenient in regards to the 'list...
[sope] / sope-appserver / NGObjWeb / WOAdaptor.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 // $id: WOAdaptor.m,v 1.18 2000/10/11 10:06:15 helge Exp $
22
23 #include <NGObjWeb/WOAdaptor.h>
24 #include "common.h"
25
26 #if APPLE_FOUNDATION_LIBRARY || NeXT_Foundation_LIBRARY
27 @interface NSObject(Miss)
28 - (void)subclassResponsibility:(SEL)cmd;
29 @end
30 #endif
31
32 @implementation WOAdaptor
33
34 + (int)version {
35   return 1;
36 }
37
38 - (id)initWithName:(NSString *)_name arguments:(NSDictionary *)_args
39   application:(WOCoreApplication *)_application
40 {
41   if ((self = [super init])) {
42     self->application = _application;
43     self->name        = [_name copyWithZone:[self zone]];
44   }
45   return self;
46 }
47
48 - (void)dealloc {
49   self->application = nil;
50   [self->name release];
51   [super dealloc];
52 }
53
54 - (void)registerForEvents {
55   [self subclassResponsibility:_cmd];
56 }
57 - (void)unregisterForEvents {
58   [self subclassResponsibility:_cmd];
59 }
60
61 @end /* WOAdaptor */