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

This is IBConnectors.h in view mode; [Download] [Up]

/* Implementation of IBConnnector classes
 *
 * Copyright (C)  1993  The Board of Trustees of  
 * The Leland Stanford Junior University.  All Rights Reserved.
 *
 * Authors:Paul Kunz, Imran Qureshi, and Libing Wang
 *
 * This file is part of an Objective-C class library for a window system
 *
 * IBConnectors.h,v 1.5 1995/04/11 00:01:44 pfkeb Exp
 */

/* This are interfaces for Connector Objects
 * These objects make connections when objects are read from .xmib files.
 */


#include <objc/Object.h>

@interface IBConnector:Object
{
  id    source;
  id    destination;
  char    *label;
}
- free;
- write:(TypedStream *) stream;
- read:(TypedStream *) stream;

- source;
- destination;
@end

@interface IBControlConnector:IBConnector
{
}
- write:(TypedStream *)stream;
- read:(TypedStream *)stream;
- establishConnection;
@end

@interface IBOutletConnector : IBConnector
- write:(TypedStream *)stream;
- read:(TypedStream *)stream;
- establishConnection;
@end

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