mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-03 10:00:51 +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
f9ebf536fb
commit
7a80d561c9
8 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C BinaryTreeNode object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#include <objects/BinaryTree.h>
|
#include <objects/BinaryTree.h>
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
|
|
||||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising, Coding>
|
@interface BinaryTreeNode : NSObject <BinaryTreeComprising>
|
||||||
{
|
{
|
||||||
id _left;
|
id _left;
|
||||||
id _right;
|
id _right;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C Collection object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
#include <objects/Coder.h>
|
#include <objects/Coder.h>
|
||||||
|
|
||||||
@interface Collection : NSObject <Collecting, Coding>
|
@interface Collection : NSObject <Collecting>
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C LinkedListNode object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#include <objects/LinkedList.h>
|
#include <objects/LinkedList.h>
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
|
|
||||||
@interface LinkedListNode : NSObject <LinkedListComprising, Coding>
|
@interface LinkedListNode : NSObject <LinkedListComprising>
|
||||||
{
|
{
|
||||||
id <LinkedListComprising> _next;
|
id <LinkedListComprising> _next;
|
||||||
id <LinkedListComprising> _prev;
|
id <LinkedListComprising> _prev;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for abstract superclass port for use with Connection
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: July 1994
|
Date: July 1994
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
@class Connection;
|
@class Connection;
|
||||||
|
|
||||||
@interface Port : RetainingNotifier <Coding>
|
@interface Port : RetainingNotifier
|
||||||
|
|
||||||
/* xxx These will probably change */
|
/* xxx These will probably change */
|
||||||
+ newRegisteredPortWithName: (id <String>)n;
|
+ newRegisteredPortWithName: (id <String>)n;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C BinaryTreeNode object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#include <objects/BinaryTree.h>
|
#include <objects/BinaryTree.h>
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
|
|
||||||
@interface BinaryTreeNode : NSObject <BinaryTreeComprising, Coding>
|
@interface BinaryTreeNode : NSObject <BinaryTreeComprising>
|
||||||
{
|
{
|
||||||
id _left;
|
id _left;
|
||||||
id _right;
|
id _right;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C Collection object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
#include <objects/Coder.h>
|
#include <objects/Coder.h>
|
||||||
|
|
||||||
@interface Collection : NSObject <Collecting, Coding>
|
@interface Collection : NSObject <Collecting>
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for Objective-C LinkedListNode object
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: May 1993
|
Date: May 1993
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#include <objects/LinkedList.h>
|
#include <objects/LinkedList.h>
|
||||||
#include <objects/Coding.h>
|
#include <objects/Coding.h>
|
||||||
|
|
||||||
@interface LinkedListNode : NSObject <LinkedListComprising, Coding>
|
@interface LinkedListNode : NSObject <LinkedListComprising>
|
||||||
{
|
{
|
||||||
id <LinkedListComprising> _next;
|
id <LinkedListComprising> _next;
|
||||||
id <LinkedListComprising> _prev;
|
id <LinkedListComprising> _prev;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Interface for abstract superclass port for use with Connection
|
/* 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: July 1994
|
Date: July 1994
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
@class Connection;
|
@class Connection;
|
||||||
|
|
||||||
@interface Port : RetainingNotifier <Coding>
|
@interface Port : RetainingNotifier
|
||||||
|
|
||||||
/* xxx These will probably change */
|
/* xxx These will probably change */
|
||||||
+ newRegisteredPortWithName: (id <String>)n;
|
+ newRegisteredPortWithName: (id <String>)n;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue