ftp.nice.ch/pub/next/developer/languages/c/gcc.2.7.2.2.I.b.tar.gz#/lib/gcc-lib/i386-next-nextstep3/2.7.2.2.f.2/include/foundation/NSObjCRuntime.h

This is NSObjCRuntime.h in view mode; [Download] [Up]

/*	NSObjCRuntime.h
	Language terminology
  	Copyright 1994, NeXT, Inc.
	NeXT, March 1994
*/

#import <objc/objc.h>

@class NSString;

/***************	Types		***************/

/* We assume that id, Class, SEL, BOOL have been defined by the language */

/***************	Functions		***************/

extern NSString *NSStringFromSelector(SEL aSelector);

extern SEL NSSelectorFromString(NSString *aSelectorName);
    /* returns 0 if selector does not exist */

extern Class NSClassFromString(NSString *aClassName);
    /* Returns nil if no class with this name currently loaded */

extern NSString *NSStringFromClass(Class aClass);

/***************	Constants		***************/

#ifndef YES
#define YES		1
#endif
#ifndef NO
#define NO		0
#endif

#ifndef nil
#define nil		0
#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.