mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Removed Coding protocol. It's already provided by NSObject.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@322 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4efaef2384
commit
7267789e01
8 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C BinaryTreeNode object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -28,7 +28,7 @@
|
|||
#include <objects/BinaryTree.h>
|
||||
#include <objects/Coding.h>
|
||||
|
||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising, Coding>
|
||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising>
|
||||
{
|
||||
id _left;
|
||||
id _right;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C Collection object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -36,7 +36,7 @@
|
|||
#include <objects/Coding.h>
|
||||
#include <objects/Coder.h>
|
||||
|
||||
@interface Collection : NSObject <Collecting, Coding>
|
||||
@interface Collection : NSObject <Collecting>
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C LinkedListNode object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -28,7 +28,7 @@
|
|||
#include <objects/LinkedList.h>
|
||||
#include <objects/Coding.h>
|
||||
|
||||
@interface LinkedListNode : NSObject <LinkedListComprising, Coding>
|
||||
@interface LinkedListNode : NSObject <LinkedListComprising>
|
||||
{
|
||||
id <LinkedListComprising> _next;
|
||||
id <LinkedListComprising> _prev;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for abstract superclass port for use with Connection
|
||||
Copyright (C) 1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: July 1994
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
@class Connection;
|
||||
|
||||
@interface Port : RetainingNotifier <Coding>
|
||||
@interface Port : RetainingNotifier
|
||||
|
||||
/* xxx These will probably change */
|
||||
+ newRegisteredPortWithName: (id <String>)n;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C BinaryTreeNode object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -28,7 +28,7 @@
|
|||
#include <objects/BinaryTree.h>
|
||||
#include <objects/Coding.h>
|
||||
|
||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising, Coding>
|
||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising>
|
||||
{
|
||||
id _left;
|
||||
id _right;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C Collection object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -36,7 +36,7 @@
|
|||
#include <objects/Coding.h>
|
||||
#include <objects/Coder.h>
|
||||
|
||||
@interface Collection : NSObject <Collecting, Coding>
|
||||
@interface Collection : NSObject <Collecting>
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for Objective-C LinkedListNode object
|
||||
Copyright (C) 1993,1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -28,7 +28,7 @@
|
|||
#include <objects/LinkedList.h>
|
||||
#include <objects/Coding.h>
|
||||
|
||||
@interface LinkedListNode : NSObject <LinkedListComprising, Coding>
|
||||
@interface LinkedListNode : NSObject <LinkedListComprising>
|
||||
{
|
||||
id <LinkedListComprising> _next;
|
||||
id <LinkedListComprising> _prev;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for abstract superclass port for use with Connection
|
||||
Copyright (C) 1994 Free Software Foundation, Inc.
|
||||
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: July 1994
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
@class Connection;
|
||||
|
||||
@interface Port : RetainingNotifier <Coding>
|
||||
@interface Port : RetainingNotifier
|
||||
|
||||
/* xxx These will probably change */
|
||||
+ newRegisteredPortWithName: (id <String>)n;
|
||||
|
|
Loading…
Reference in a new issue