| [2] | 1 | /* Interface for the Object class for Objective-C.
|
|---|
| 2 | Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
|
|---|
| 3 |
|
|---|
| 4 | This file is part of GNU CC.
|
|---|
| 5 |
|
|---|
| 6 | GNU CC is free software; you can redistribute it and/or modify it
|
|---|
| 7 | under the terms of the GNU General Public License as published by the
|
|---|
| 8 | Free Software Foundation; either version 2, or (at your option) any
|
|---|
| 9 | later version.
|
|---|
| 10 |
|
|---|
| 11 | GNU CC is distributed in the hope that it will be useful, but WITHOUT
|
|---|
| 12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|---|
| 13 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|---|
| 14 | License for more details.
|
|---|
| 15 |
|
|---|
| 16 | You should have received a copy of the GNU General Public License
|
|---|
| 17 | along with GNU CC; see the file COPYING. If not, write to
|
|---|
| 18 | the Free Software Foundation, 59 Temple Place - Suite 330,
|
|---|
| 19 | Boston, MA 02111-1307, USA. */
|
|---|
| 20 |
|
|---|
| 21 | /* As a special exception, if you link this library with files compiled
|
|---|
| 22 | with GCC to produce an executable, this does not cause the resulting
|
|---|
| 23 | executable to be covered by the GNU General Public License. This
|
|---|
| 24 | exception does not however invalidate any other reasons why the
|
|---|
| 25 | executable file might be covered by the GNU General Public License. */
|
|---|
| 26 |
|
|---|
| 27 | #ifndef __object_INCLUDE_GNU
|
|---|
| 28 | #define __object_INCLUDE_GNU
|
|---|
| 29 |
|
|---|
| 30 | #include <objc/objc.h>
|
|---|
| 31 | #include <objc/typedstream.h>
|
|---|
| 32 |
|
|---|
| 33 | /*
|
|---|
| 34 | * All classes are derived from Object. As such,
|
|---|
| 35 | * this is the overhead tacked onto those objects.
|
|---|
| 36 | */
|
|---|
| 37 | @interface Object
|
|---|
| 38 | {
|
|---|
| |
|---|