Update of /cvsroot/hoc/hoc/HOC
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv6881/HOC
Modified Files:
HOC.hs
Log Message:
a) Utilities cleanup:
remove #* (send message and release result)
add #. (get instance variable)
add declareMarshalledObjectType
b) sending init messages to super is now supported
c) can now implement methods that return a retained object (like init)
Index: HOC.hs
===================================================================
RCS file: /cvsroot/hoc/hoc/HOC/HOC.hs,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- HOC.hs 20 Mar 2006 06:32:16 -0000 1.14
+++ HOC.hs 13 Feb 2007 17:11:04 -0000 1.15
@@ -5,8 +5,7 @@
Object(..),
Class,
ClassAndObject,
- ( # ), ( #* ),
- ObjCArgument(..),
+ ( # ), ( #. ),
withExportedArray,
castObject,
declareClass,
@@ -47,6 +46,9 @@
sel,
+ ObjCArgument(..),
+ declareMarshalledObjectType,
+
-- debugging & statistics:
objectMapStatistics
|