This is AlexandraApp.m in view mode; [Download] [Up]
#import "AlexandraApp.h"
#import "AMGErrorHandling.subproj/AMGErrorHandling.h"
#import <misckit/misckit.h>
#import "emccodes.h"
//-----------------------------------------------------------
// Category of MiscInfoController
//-----------------------------------------------------------
@interface MiscInfoController(GetStringTable)
- strings;
@end
@implementation MiscInfoController(GetStringTable)
- strings;
{
return strings;
}
@end
@implementation AlexandraApp
//-----------------------------------------------------------
// initialise
//-----------------------------------------------------------
+ new
{
AlexandraApp *new;
new=[super new];
[EMErrorManager new];
return new;
}
//-----------------------------------------------------------
// global attributes
//-----------------------------------------------------------
- (const char *)appVersion;
{
return [[(MiscInfoController *)infoController strings] valueForKey:"Version"];
}
//-----------------------------------------------------------
// THAT'S IT
//-----------------------------------------------------------
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.