mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-22 02:41:05 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@15102 72102866-910b-0410-8b05-ffd578937521
71 lines
2.3 KiB
Objective-C
71 lines
2.3 KiB
Objective-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 <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__ */
|