This is Inverter.h in view mode; [Download] [Up]
//
// Inverter
//
// An Objective-C class for digital logic simulation which
// simulates an n-bit inverter.
//
// This is a subclass of Node because it needs intermediate
// data when cycled.
//
#import <objc/Object.h>
#import "Node.h"
@interface Inverter : Node
{
//
// External interface
//
Node *IN;
Node *OUT;
}
- initNumBits:(int)nbits in:innode out:outnode;
- cycle;
@end
//
// End of file.
//These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.