mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-21 20:30:44 +00:00
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
|
/*
|
||
|
EOAccess.h
|
||
|
|
||
|
Copyright (C) 2000-2002 Free Software Foundation, Inc.
|
||
|
|
||
|
Author: Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||
|
Date: February 2000
|
||
|
|
||
|
This file is part of the GNUstep Database Library.
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public
|
||
|
License along with this library; see the file COPYING.LIB.
|
||
|
If not, write to the Free Software Foundation,
|
||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef __EOAccess_h__
|
||
|
#define __EOAccess_h__
|
||
|
|
||
|
#import <extensions/objc-runtime.h>
|
||
|
|
||
|
#import <Foundation/NSArray.h>
|
||
|
#import <Foundation/NSAutoreleasePool.h>
|
||
|
#import <Foundation/NSBundle.h>
|
||
|
#import <Foundation/NSCharacterSet.h>
|
||
|
#import <Foundation/NSData.h>
|
||
|
#import <Foundation/NSDate.h>
|
||
|
#import <Foundation/NSDictionary.h>
|
||
|
#import <Foundation/NSException.h>
|
||
|
#import <Foundation/NSNotification.h>
|
||
|
#import <Foundation/NSObjCRuntime.h>
|
||
|
#import <Foundation/NSObject.h>
|
||
|
#import <Foundation/NSPathUtilities.h>
|
||
|
#import <Foundation/NSRange.h>
|
||
|
#import <Foundation/NSScanner.h>
|
||
|
#import <Foundation/NSString.h>
|
||
|
#import <Foundation/NSUtilities.h>
|
||
|
#import <Foundation/NSValue.h>
|
||
|
#import <Foundation/NSZone.h>
|
||
|
#import <Foundation/NSCoder.h>
|
||
|
#import <Foundation/NSArchiver.h>
|
||
|
|
||
|
#import <EOAccess/EOAdaptor.h>
|
||
|
#import <EOAccess/EOAdaptorContext.h>
|
||
|
#import <EOAccess/EOAdaptorChannel.h>
|
||
|
#import <EOAccess/EOAttribute.h>
|
||
|
#import <EOAccess/EODatabase.h>
|
||
|
#import <EOAccess/EODatabaseChannel.h>
|
||
|
#import <EOAccess/EODatabaseContext.h>
|
||
|
#import <EOAccess/EOEntity.h>
|
||
|
#import <EOAccess/EOJoin.h>
|
||
|
#import <EOAccess/EOModel.h>
|
||
|
#import <EOAccess/EOModelGroup.h>
|
||
|
#import <EOAccess/EORelationship.h>
|
||
|
#import <EOAccess/EOStoredProcedure.h>
|
||
|
#import <EOAccess/EOSQLExpression.h>
|
||
|
#import <EOAccess/EOSQLQualifier.h>
|
||
|
#import <EOAccess/EODatabaseDataSource.h>
|
||
|
#import <EOAccess/EOSchemaGeneration.h>
|
||
|
#import <EOAccess/EOUtilities.h>
|
||
|
|
||
|
|
||
|
#endif /* __EOAccess_h__ */
|