mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
add defines for clang and non-fragile ivars
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/reorg@29561 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5d59a307ad
commit
b969c50ba7
69 changed files with 305 additions and 235 deletions
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_GSLock_IVARS 1
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
|
|
|
@ -52,6 +52,9 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_GSMimeDocument_IVARS 1
|
||||
#define EXPOSE_GSMimeHeader_IVARS 1
|
||||
#define EXPOSE_GSMimeParser_IVARS 1
|
||||
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSArchiver_IVARS 1
|
||||
#define EXPOSE_NSUnarchiver_IVARS 1
|
||||
/*
|
||||
* Setup for inline operation of pointer map tables.
|
||||
*/
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#define EXPOSE_NSAutoreleasePool_IVARS 1
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSGarbageCollector.h"
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#define EXPOSE_NSBundle_IVARS 1
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "objc-load.h"
|
||||
#include "Foundation/NSBundle.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#import "config.h"
|
||||
|
||||
#define EXPOSE_GSCACHE_IVARS 1
|
||||
#define EXPOSE_NSCache_IVARS 1
|
||||
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSCache.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSCachedURLResponse_VARS 1
|
||||
#include "GSURLPrivate.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
|
||||
|
|
|
@ -28,24 +28,25 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSCalendarDate_IVARS 1
|
||||
#include <math.h>
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSCalendarDate.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSDictionary.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSObjCRuntime.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSTimeZone.h"
|
||||
#include "Foundation/NSUserDefaults.h"
|
||||
#include "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSCalendarDate.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSObjCRuntime.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSTimeZone.h"
|
||||
#import "Foundation/NSUserDefaults.h"
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
|
||||
#include "GSPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
|
|
|
@ -25,17 +25,17 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "Foundation/NSClassDescription.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSMapTable.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSClassDescription.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSMapTable.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
|
||||
|
||||
/**
|
||||
* Each instance of this class provides descriptive information for an
|
||||
* Objective C class. This is used for key-value coding, a framework
|
||||
* used in Cocoa for scripting with Objective-C objects. Scripting is
|
||||
* available in GNUstep using Guile, however that implementation does
|
||||
* available in GNUstep in many ways, however those implementations do
|
||||
* not make use of class descriptions. Therefore the primary purpose
|
||||
* of this class is to smooth the process of porting between GNUstep
|
||||
* and other OpenStep-derived systems.
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSCoder_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
|
||||
#import "config.h"
|
||||
|
||||
#define EXPOSE_NSConnection_IVARS 1
|
||||
|
||||
#ifdef HAVE_ALLOCA_H
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
|
|
|
@ -26,13 +26,14 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSCalendarDate.h"
|
||||
#include "Foundation/NSTimeZone.h"
|
||||
#include "Foundation/NSFormatter.h"
|
||||
#include "Foundation/NSDateFormatter.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#define EXPOSE_NSNSDateFormatter_IVARS 1
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSCalendarDate.h"
|
||||
#import "Foundation/NSTimeZone.h"
|
||||
#import "Foundation/NSFormatter.h"
|
||||
#import "Foundation/NSDateFormatter.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
|
||||
@implementation NSDateFormatter
|
||||
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
#if !defined(__APPLE__) || !defined(GNU_RUNTIME)
|
||||
#include <ctype.h>
|
||||
#endif
|
||||
#include "Foundation/NSDecimal.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSDictionary.h"
|
||||
#include "Foundation/NSUserDefaults.h"
|
||||
#import "Foundation/NSDecimal.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSUserDefaults.h"
|
||||
|
||||
#ifndef NAN
|
||||
#define NAN 0.0
|
||||
|
|
|
@ -30,13 +30,14 @@
|
|||
#define _ISOC99_SOURCE
|
||||
#include <math.h>
|
||||
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSDecimal.h"
|
||||
#include "Foundation/NSDecimalNumber.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSPortCoder.h"
|
||||
#define EXPOSE_NSNSDecimalNumber_IVARS 1
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSDecimal.h"
|
||||
#import "Foundation/NSDecimalNumber.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSPortCoder.h"
|
||||
|
||||
#include "GSPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
#ifdef fpclassify
|
||||
#define GSIsNAN(n) (fpclassify(n) == FP_NAN)
|
||||
|
|
|
@ -26,19 +26,20 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "GNUstepBase/DistributedObjects.h"
|
||||
#include "GNUstepBase/GSObjCRuntime.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSPort.h"
|
||||
#include "Foundation/NSMethodSignature.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSObjCRuntime.h"
|
||||
#include "Foundation/NSInvocation.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSDistantObject_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "GNUstepBase/DistributedObjects.h"
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSPort.h"
|
||||
#import "Foundation/NSMethodSignature.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSObjCRuntime.h"
|
||||
#import "Foundation/NSInvocation.h"
|
||||
#include <objc/Protocol.h>
|
||||
#include "GSInvocation.h"
|
||||
#import "GSInvocation.h"
|
||||
|
||||
|
||||
@interface NSDistantObject(GNUstepExtensions)
|
||||
|
|
|
@ -25,14 +25,15 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#import "config.h"
|
||||
#include <string.h>
|
||||
#include "Foundation/NSDistributedLock.h"
|
||||
#include "Foundation/NSFileManager.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSValue.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "GSPrivate.h"
|
||||
#define EXPOSE_NSDistributedLock_IVARS 1
|
||||
#import "Foundation/NSDistributedLock.h"
|
||||
#import "Foundation/NSFileManager.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSValue.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
#include <fcntl.h>
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSNSDistributedNotificationCenter_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSConnection.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSError_IVARS 1
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSError.h"
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSException_IVARS 1
|
||||
#import "GSPrivate.h"
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSFileHandle_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSData.h"
|
||||
|
|
|
@ -42,7 +42,8 @@
|
|||
which default to pre POSIX declaration. */
|
||||
#define _POSIX_PTHREAD_SEMANTICS
|
||||
|
||||
#include "config.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSFileManager_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSHTTPCookies_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "Foundation/NSSet.h"
|
||||
#import "GNUstepBase/NSObject+GNUstepBase.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSHTTPCookieStorage_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "Foundation/NSSet.h"
|
||||
#import "GNUstepBase/NSObject+GNUstepBase.h"
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSHost_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSHost.h"
|
||||
|
|
|
@ -23,16 +23,17 @@
|
|||
|
||||
*/
|
||||
|
||||
#include "Foundation/NSObject.h"
|
||||
#include "Foundation/NSByteOrder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSHashTable.h"
|
||||
#include "Foundation/NSIndexPath.h"
|
||||
#include "Foundation/NSKeyedArchiver.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSZone.h"
|
||||
#include "GNUstepBase/GSLock.h"
|
||||
#define EXPOSE_NSIndexPath_IVARS 1
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSByteOrder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSHashTable.h"
|
||||
#import "Foundation/NSIndexPath.h"
|
||||
#import "Foundation/NSKeyedArchiver.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSZone.h"
|
||||
#import "GNUstepBase/GSLock.h"
|
||||
|
||||
static NSLock *lock = nil;
|
||||
static NSHashTable *shared = 0;
|
||||
|
|
|
@ -23,11 +23,12 @@
|
|||
|
||||
*/
|
||||
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSIndexSet.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSZone.h"
|
||||
#define EXPOSE_NSIndexSet_IVARS 1
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSIndexSet.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSZone.h"
|
||||
|
||||
#define GSI_ARRAY_TYPE NSRange
|
||||
|
||||
|
|
|
@ -26,11 +26,12 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSInvocation_IVARS 1
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSInvocation.h"
|
||||
#import "GSInvocation.h"
|
||||
#import "config.h"
|
||||
#import "GSPrivate.h"
|
||||
#import "GNUstepBase/NSObject+GNUstepBase.h"
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSKeyedArchiver_IVARS 1
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSData.h"
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSKeyedUnarchiver_IVARS 1
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
|
@ -32,7 +34,6 @@
|
|||
#import "Foundation/NSValue.h"
|
||||
|
||||
#import "GSPrivate.h"
|
||||
#import "config.h"
|
||||
|
||||
/*
|
||||
* Setup for inline operation of arrays.
|
||||
|
|
|
@ -31,6 +31,10 @@
|
|||
#import "GNUstepBase/GSConfig.h"
|
||||
#define gs_cond_t pthread_cond_t
|
||||
#define gs_mutex_t pthread_mutex_t
|
||||
#define EXPOSE_NSLock_IVARS 1
|
||||
#define EXPOSE_NSRecursiveLock_IVARS 1
|
||||
#define EXPOSE_NSCondition_IVARS 1
|
||||
#define EXPOSE_NSConditionLock_IVARS 1
|
||||
#import "Foundation/NSLock.h"
|
||||
#include <math.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -22,30 +22,30 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "GNUstepBase/GSLock.h"
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSByteOrder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSMapTable.h"
|
||||
#include "Foundation/NSPortMessage.h"
|
||||
#include "Foundation/NSPortNameServer.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSThread.h"
|
||||
#include "Foundation/NSConnection.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "Foundation/NSPathUtilities.h"
|
||||
#include "Foundation/NSValue.h"
|
||||
#include "Foundation/NSFileManager.h"
|
||||
#include "Foundation/NSProcessInfo.h"
|
||||
#import "config.h"
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "GNUstepBase/GSLock.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSByteOrder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSMapTable.h"
|
||||
#import "Foundation/NSPortMessage.h"
|
||||
#import "Foundation/NSPortNameServer.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSThread.h"
|
||||
#import "Foundation/NSConnection.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "Foundation/NSPathUtilities.h"
|
||||
#import "Foundation/NSValue.h"
|
||||
#import "Foundation/NSFileManager.h"
|
||||
#import "Foundation/NSProcessInfo.h"
|
||||
|
||||
#include "GSPrivate.h"
|
||||
#include "GSPortPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
#import "GSPortPrivate.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -23,22 +23,22 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "Foundation/NSPortNameServer.h"
|
||||
#import "Foundation/NSPortNameServer.h"
|
||||
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSDistributedLock.h"
|
||||
#include "Foundation/NSMapTable.h"
|
||||
#include "Foundation/NSPathUtilities.h"
|
||||
#include "Foundation/NSPort.h"
|
||||
#include "Foundation/NSFileManager.h"
|
||||
#include "Foundation/NSValue.h"
|
||||
#include "Foundation/NSThread.h"
|
||||
#include "GNUstepBase/GSMime.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSDistributedLock.h"
|
||||
#import "Foundation/NSMapTable.h"
|
||||
#import "Foundation/NSPathUtilities.h"
|
||||
#import "Foundation/NSPort.h"
|
||||
#import "Foundation/NSFileManager.h"
|
||||
#import "Foundation/NSValue.h"
|
||||
#import "Foundation/NSThread.h"
|
||||
#import "GNUstepBase/GSMime.h"
|
||||
|
||||
#include "GSPortPrivate.h"
|
||||
#import "GSPortPrivate.h"
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -27,15 +27,16 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSMethodSignature_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
|
||||
#include "Foundation/NSMethodSignature.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSMethodSignature.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
|
||||
#include "GSInvocation.h"
|
||||
#import "GSInvocation.h"
|
||||
|
||||
/* The objc runtime library objc_skip_offset() is buggy on some compiler
|
||||
* versions, so we use our own alternative implementation.
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSNetServices_IVARS 1
|
||||
#import "Foundation/NSNetServices.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSEnumerator.h"
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSNotification_IVARS 1
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
|
|
|
@ -29,7 +29,8 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSNotificationCenter_IVARS 1
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
|
|
|
@ -28,17 +28,18 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSNotificationQueue.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#include "Foundation/NSDictionary.h"
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSThread.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSNotificationQueue_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSNotificationQueue.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSThread.h"
|
||||
|
||||
#include "GSPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
/* NotificationQueueList by Richard Frith-Macdonald
|
||||
These objects are used to maintain lists of NSNotificationQueue objects.
|
||||
There is one list per NSThread, with the first object in the list stored
|
||||
|
|
|
@ -27,16 +27,17 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "Foundation/NSAttributedString.h"
|
||||
#include "Foundation/NSDecimalNumber.h"
|
||||
#include "Foundation/NSDictionary.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSNumberFormatter.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSUserDefaults.h"
|
||||
#include "Foundation/NSCharacterSet.h"
|
||||
#define EXPOSE_NSNumberFormatter_IVARS 1
|
||||
#import "Foundation/NSAttributedString.h"
|
||||
#import "Foundation/NSDecimalNumber.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSNumberFormatter.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSUserDefaults.h"
|
||||
#import "Foundation/NSCharacterSet.h"
|
||||
|
||||
#include "GNUstepBase/GSLocale.h"
|
||||
#import "GNUstepBase/GSLocale.h"
|
||||
|
||||
@implementation NSNumberFormatter
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSOperation_IVARS 1
|
||||
#define EXPOSE_NSOperationQueue_IVARS 1
|
||||
#import "Foundation/NSOperation.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
|
|
|
@ -33,18 +33,17 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <string.h>
|
||||
|
||||
#include "Foundation/NSObjCRuntime.h"
|
||||
#include "Foundation/NSZone.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSByteOrder.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSPort.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSPortCoder_IVARS 1
|
||||
#import "Foundation/NSObjCRuntime.h"
|
||||
#import "Foundation/NSZone.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSByteOrder.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSPort.h"
|
||||
#import "Foundation/NSString.h"
|
||||
|
||||
@class NSMutableDataMalloc;
|
||||
@interface NSMutableDataMalloc : NSObject // Help the compiler
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSPortMessage_IVARS 1
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSException.h"
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#define EXPOSE_NSProtocolChecker_IVARS 1
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "Foundation/NSProtocolChecker.h"
|
||||
#include "Foundation/NSException.h"
|
||||
|
|
|
@ -29,26 +29,27 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "Foundation/NSMapTable.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSValue.h"
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSPort.h"
|
||||
#include "Foundation/NSTimer.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#include "Foundation/NSNotificationQueue.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSStream.h"
|
||||
#include "Foundation/NSThread.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#include "Foundation/NSInvocation.h"
|
||||
#include "GSRunLoopCtxt.h"
|
||||
#include "GSRunLoopWatcher.h"
|
||||
#include "GSStream.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSRunLoop_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSMapTable.h"
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSValue.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSPort.h"
|
||||
#import "Foundation/NSTimer.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSNotificationQueue.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSStream.h"
|
||||
#import "Foundation/NSThread.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "Foundation/NSInvocation.h"
|
||||
#import "GSRunLoopCtxt.h"
|
||||
#import "GSRunLoopWatcher.h"
|
||||
#import "GSStream.h"
|
||||
|
||||
#include "GSPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#endif
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSScanner_IVARS 1
|
||||
#import "GNUstepBase/Unicode.h"
|
||||
#import "Foundation/NSScanner.h"
|
||||
#import "Foundation/NSException.h"
|
||||
|
|
|
@ -22,30 +22,31 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include "GNUstepBase/GSLock.h"
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#include "Foundation/NSNotificationQueue.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSByteOrder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSHost.h"
|
||||
#include "Foundation/NSMapTable.h"
|
||||
#include "Foundation/NSPortMessage.h"
|
||||
#include "Foundation/NSPortNameServer.h"
|
||||
#include "Foundation/NSLock.h"
|
||||
#include "Foundation/NSHost.h"
|
||||
#include "Foundation/NSThread.h"
|
||||
#include "Foundation/NSConnection.h"
|
||||
#include "Foundation/NSDebug.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSSocketPort_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "GNUstepBase/GSLock.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSNotificationQueue.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSByteOrder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSHost.h"
|
||||
#import "Foundation/NSMapTable.h"
|
||||
#import "Foundation/NSPortMessage.h"
|
||||
#import "Foundation/NSPortNameServer.h"
|
||||
#import "Foundation/NSLock.h"
|
||||
#import "Foundation/NSHost.h"
|
||||
#import "Foundation/NSThread.h"
|
||||
#import "Foundation/NSConnection.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
|
||||
#include "GSNetwork.h"
|
||||
#include "GSPortPrivate.h"
|
||||
#include "GSPrivate.h"
|
||||
#import "GSNetwork.h"
|
||||
#import "GSPortPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSSocketPortNameServer_IVARS 1
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSByteOrder.h"
|
||||
|
|
|
@ -22,16 +22,17 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "Foundation/NSSortDescriptor.h"
|
||||
#define EXPOSE_NSSortDescriptor_IVARS 1
|
||||
#import "Foundation/NSSortDescriptor.h"
|
||||
|
||||
#include "Foundation/NSBundle.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSKeyValueCoding.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#import "Foundation/NSBundle.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSKeyValueCoding.h"
|
||||
#import "Foundation/NSString.h"
|
||||
|
||||
#include "GNUstepBase/GSObjCRuntime.h"
|
||||
#include "GSPrivate.h"
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
@implementation NSSortDescriptor
|
||||
|
||||
|
|
|
@ -27,18 +27,19 @@
|
|||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "Foundation/NSSpellServer.h"
|
||||
#include "Foundation/NSDictionary.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSFileManager.h"
|
||||
#include "Foundation/NSUserDefaults.h"
|
||||
#include "Foundation/NSPathUtilities.h"
|
||||
#include "Foundation/NSConnection.h"
|
||||
#include "Foundation/NSProcessInfo.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSSet.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSSpellServer_IVARS 1
|
||||
#import "Foundation/NSSpellServer.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSFileManager.h"
|
||||
#import "Foundation/NSUserDefaults.h"
|
||||
#import "Foundation/NSPathUtilities.h"
|
||||
#import "Foundation/NSConnection.h"
|
||||
#import "Foundation/NSProcessInfo.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSSet.h"
|
||||
|
||||
NSString *const NSGrammarRange = @"NSGrammarRange";
|
||||
NSString *const NSGrammarUserDescription = @"NSGrammarUserDescription";
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSTask_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#define EXPOSE_NSThread_IVARS 1
|
||||
#include "GNUstepBase/preface.h"
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
FIXME?: use leap seconds? */
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSTimeZone_IVARS 1
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "GNUstepBase/GSLock.h"
|
||||
#include <limits.h>
|
||||
|
|
|
@ -27,12 +27,13 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "Foundation/NSTimer.h"
|
||||
#include "Foundation/NSDate.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSInvocation.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSTimer_IVARS 1
|
||||
#import "Foundation/NSTimer.h"
|
||||
#import "Foundation/NSDate.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSInvocation.h"
|
||||
|
||||
@class NSGDate;
|
||||
@interface NSGDate : NSObject // Help the compiler
|
||||
|
|
|
@ -37,6 +37,7 @@ function may be incorrect
|
|||
* Some functions are not implemented
|
||||
*/
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSURL_IVARS 1
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLAuthenticationChallenge_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "Foundation/NSError.h"
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLCache_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "GNUstepBase/NSObject+GNUstepBase.h"
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLConnection_IVARS 1
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSDebug.h"
|
||||
#import "GSURLPrivate.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLCredential_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
|
||||
// Internal data storage
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLCredentialStorage_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
|
||||
NSString *const NSURLCredentialStorageChangedNotification
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
|
||||
|
||||
#define EXPOSE_NSURLDownload_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
|
||||
@interface GSURLDownload : NSObject <NSURLProtocolClient>
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLHandle_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
|
||||
#import "Foundation/NSURLHandle.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLProtectionSpace_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "GNUstepBase/NSURL+GNUstepBase.h"
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLProtocol_IVARS 1
|
||||
#import "Foundation/NSError.h"
|
||||
#import "Foundation/NSHost.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLRequest_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSURLResponse_IVARS 1
|
||||
#import "GSURLPrivate.h"
|
||||
#import "GSPrivate.h"
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSUnarchiver_IVARS 1
|
||||
#include <string.h>
|
||||
#import "Foundation/NSObjCRuntime.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
|
@ -43,14 +44,14 @@
|
|||
#include "GNUstepBase/GSIArray.h"
|
||||
|
||||
#define _IN_NSUNARCHIVER_M
|
||||
#include "Foundation/NSArchiver.h"
|
||||
#import "Foundation/NSArchiver.h"
|
||||
#undef _IN_NSUNARCHIVER_M
|
||||
|
||||
#include "Foundation/NSAutoreleasePool.h"
|
||||
#include "Foundation/NSCoder.h"
|
||||
#include "Foundation/NSData.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSArray.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
|
||||
@class NSDataMalloc;
|
||||
@interface NSDataMalloc : NSObject // Help the compiler
|
||||
|
|
|
@ -24,15 +24,16 @@
|
|||
$Date$ $Revision$
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "Foundation/NSObject.h"
|
||||
#include "Foundation/NSString.h"
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSNotification.h"
|
||||
#include "Foundation/NSInvocation.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSRunLoop.h"
|
||||
#include "Foundation/NSUndoManager.h"
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSUndoManager_IVARS 1
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSNotification.h"
|
||||
#import "Foundation/NSInvocation.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSRunLoop.h"
|
||||
#import "Foundation/NSUndoManager.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#define EXPOSE_NSUserDefaults_IVARS 1
|
||||
#include "GNUstepBase/preface.h"
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#define EXPOSE_NSValueTransformer_IVARS 1
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSKeyedArchiver.h"
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#import "config.h"
|
||||
#define EXPOSE_NSXMLParser_IVARS 1
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSError.h"
|
||||
#import "Foundation/NSEnumerator.h"
|
||||
|
|
Loading…
Reference in a new issue