ftp.nice.ch/pub/next/connectivity/mail/bundles/EnhanceMail.2.2p1.s.gnutar.gz#/EnhanceMail-2.2p1/Source/Alias.m

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

/* -*-C-*-
*******************************************************************************
*
* File:         Alias.m
* RCS:          /usr/local/sources/CVS/EnhanceMail/Alias.m,v 1.2 1997/04/20 14:52:10 tom Exp
* Description:  
* Author:       Carl Edman
* Created:      Fri Oct 20 14:47:00 1995
* Modified:     Sat Apr 13 19:03:11 1996 (Carl Edman) cedman@capitalist.princeton.edu
* Language:     C
* Package:      N/A
* Status:       Experimental (Do Not Distribute)
*
* (C) Copyright 1995, but otherwise this file is perfect freeware.
*
*******************************************************************************
*/

#import "EnhanceMail.h"
#import "Alias.h"

@implementation EnhanceAlias

+ finishLoading:(struct mach_header *)header
{
   [self poseAs:[self superclass]];
   [[Alias new] changeClassTo:[self class]];
   return self;
}

- removeUser:(int)index from:(const char *)group
{
   return [super removeUser:index from:group];
}

- addUser:(const char *)name group:(const char *)group
{
   /* [self removeUser:oldindex group:group] */
   return [super addUser:name group:group];
}

@end // EnhanceAlias

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