ftp.nice.ch/Attic/openStep/implementation/gnustep/sources/objcX-0.87.tgz#/objcX-0.87/appkit/objcX.m

This is objcX.m in view mode; [Download] [Up]

/* Dummy function 
 *
 * Copyright (C)  1994  The Board of Trustees of  
 * The Leland Stanford Junior University.  All Rights Reserved.
 *
 * Authors: Paul Kunz
 *
 * This file is part of an Objective-C class library for a window system
 *
 * objcX.m,v 1.12 1994/06/28 20:39:44 kamerer Exp
 *
 * The purpose of the file is to force the loading of all classes.  
 * It is needed when objects of a certain class are only visible in an 
 * archive file that is loaded via one of the  -loadNibFile methods 
 * of Application.  Every application has one instance of the Application 
 * class and the function 'baseSymbols()' is referenced in the -init method 
 * of Application.  Thus, all classes will be linked into an application 
 * using the library.
 */

#include "objcX.h"

void baseSymbols()
{
	[ActionCell alloc];
	[Application alloc];
	[Box alloc];
	[Button alloc];
	[ButtonCell alloc];
	[Cell alloc];
	[ClipView alloc];
	[Control alloc];
	[CustomObject alloc];
	[CustomView alloc];
	[FontManager alloc];
	[Form alloc];
	[FormCell alloc];
	[IBControlConnector alloc];
	[IBOutletConnector alloc];
	[Matrix alloc];
	[Menu alloc];
	[MenuCell alloc];
	[NXBitmapImageRep alloc];
	[NXBrowser alloc];
	[NXBrowserCell alloc];
	[NXBundle alloc];
	[NXColorWell alloc];
	[NXImage alloc];
	[NXImageRep alloc];
	[OpenPanel alloc];
	[Panel alloc];
	[PopUpList alloc];
	[PrintInfo alloc];
	[Responder alloc];
	[SavePanel alloc];
	[ScrollView alloc];
	[Scroller alloc];
	[Slider alloc];
	[SliderCell alloc];
	[TextField alloc];
	[TextFieldCell alloc];
	[Text alloc];
	[View alloc];
	[Window alloc];
}

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