ftp.nice.ch/pub/next/developer/resources/classes/misckit/MiscKit.1.10.0.s.gnutar.gz#/MiscKit/Temp/ClassBuilder.subproj/BundleProjects/ClassCategories.bproj/APrincipalClass.m

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

/*
    APrincipalClass.m
    =================

    John Holdsworth
    Coldwave Programs Ltd.

    This software is in the public domain.

    Dummy Class to avoid problems with NS3.2 makefiles and be returned
    by principal class method of NXBundle to indicate object code has loaded.

*/
/*
 * $Log: APrincipalClass.m,v $
 * Revision 1.2  1997/04/13  22:37:18  johnh
 * Simplification of Makefile.
 *
 * Revision 1.1  1997/03/18  22:07:12  johnh
 * Simple new version.
 *
 * Revision 1.1  1997/01/23  00:59:34  johnh
 * Renamed, New Version.
 *
 */

#ifdef DEBUG

/* global varaibles linked in with loable bundle */

extern char *loaderBuildDate;
extern char *loaderClassList;

#import "APrincipalClass.h"


#include <stdio.h>

@implementation  APrincipalClass  

+ didLoad;
{
        fprintf( stdout, "Loaded classes: %s\nBuilt: %s\n", 
		loaderBuildDate, loaderClassList );

	return self;
}

@end

#endif

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