/* * Example object (c) 1994,95 by David Stes. All Rights Reserved. * $Id$ */ #ifndef __EXAMPLEOBJECT_HEADER__ #define __EXAMPLEOBJECT_HEADER__ #include @interface Exampleobject : Object { id instanceVariable; } + new; - copy; - free; - (unsigned) hash; - (BOOL) isEqual:anObject; - (BOOL) notEqual:anObject; - (BOOL) doCheck; @end #endif /* __EXAMPLEOBJECT_HEADER__ */