Declare new function names.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1327 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-31 22:46:59 +00:00
parent 738fe577c4
commit 2c66e11f59
2 changed files with 18 additions and 2 deletions

View file

@ -1,5 +1,5 @@
/* Interface for behaviors for Obj-C, "for Protocols with implementations".
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: March 1995
@ -41,6 +41,14 @@
*/
void behavior_class_add_class (Class class,
Class behavior);
void behavior_class_add_category (Class class,
struct objc_category *category);
void behavior_class_add_methods (Class class,
struct objc_method_list *methods);
/* The old deprecated interface */
void class_add_behavior (Class class, Class behavior);
/* This macro may go away in future.

View file

@ -1,5 +1,5 @@
/* Interface for behaviors for Obj-C, "for Protocols with implementations".
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: March 1995
@ -41,6 +41,14 @@
*/
void behavior_class_add_class (Class class,
Class behavior);
void behavior_class_add_category (Class class,
struct objc_category *category);
void behavior_class_add_methods (Class class,
struct objc_method_list *methods);
/* The old deprecated interface */
void class_add_behavior (Class class, Class behavior);
/* This macro may go away in future.