]> err.no Git - sope/blob - sope-gdl1/GDLAccess/eoaccess.m
removed subminor
[sope] / sope-gdl1 / GDLAccess / eoaccess.m
1 /* 
2    EOAdaptorChannel.m
3
4    Copyright (C) 1996 Free Software Foundation, Inc.
5
6    Author: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
7    Date: October 1996
8
9    This file is part of the GNUstep Database Library.
10
11    This library is free software; you can redistribute it and/or
12    modify it under the terms of the GNU Library General Public
13    License as published by the Free Software Foundation; either
14    version 2 of the License, or (at your option) any later version.
15
16    This library is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    Library General Public License for more details.
20
21    You should have received a copy of the GNU Library General Public
22    License along with this library; see the file COPYING.LIB.
23    If not, write to the Free Software Foundation,
24    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26 // $Id: eoaccess.m 1 2004-08-20 10:38:46Z znek $
27
28 #include "GDLAccess.h"
29 #include "EOArrayProxy.h"
30
31 @implementation GDLAccess
32
33 - (void)_staticLinkClasses {
34   [EOAdaptor                        class];
35   [EOAdaptorChannel                 class];
36   [EOAdaptorContext                 class];
37   [EOArrayProxy                     class];
38   [EOAttribute                      class];
39   [EOAttributeOrdering              class];
40   [EODatabase                       class];
41   [EODatabaseChannel                class];
42   [EODatabaseContext                class];
43   [EOEntity                         class];
44   [EOFException                     class];
45   [ObjectNotAvailableException      class];
46   [PropertyDefinitionException      class];
47   [DestinationEntityDoesntMatchDefinitionException class];
48   [InvalidNameException             class];
49   [InvalidPropertyException         class];
50   [RelationshipMustBeToOneException class];
51   [InvalidValueTypeException        class];
52   [InvalidAttributeException        class];
53   [InvalidQualifierException        class];
54   [EOAdaptorException               class];
55   [CannotFindAdaptorBundleException class];
56   [InvalidAdaptorBundleException    class];
57   [InvalidAdaptorStateException     class];
58   [DataTypeMappingNotSupportedException class];
59   [ChannelIsNotOpenedException      class];
60   [AdaptorIsFetchingException       class];
61   [AdaptorIsNotFetchingException    class];
62   [NoTransactionInProgressException class];
63   [TooManyOpenedChannelsException   class];
64   [EOModel                          class];
65   [EOObjectUniquer                  class];
66   [EOPrimaryKeyDictionary           class];
67   [EOSQLQualifier                   class];
68   [EOQuotedExpression               class];
69   [EORelationship                   class];
70   [EOSQLExpression                  class];
71 #if 0
72   [EOSelectSQLExpression            class];
73   [EOInsertSQLExpression            class];
74   [EOUpdateSQLExpression            class];
75   [EODeleteSQLExpression            class];
76 #endif
77 }
78
79 - (void)_staticLinkCategories {
80 }
81
82 - (void)_staticLinkModules {
83 }
84
85 @end /* GDLAccess */