diff dstep/foundation/NSGarbageCollector.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents 89f3c3ef1fd2
children b9de51448c6b
line wrap: on
line diff
--- a/dstep/foundation/NSGarbageCollector.d	Mon Aug 03 15:31:48 2009 +0200
+++ b/dstep/foundation/NSGarbageCollector.d	Sun Jan 03 22:06:11 2010 +0100
@@ -7,16 +7,27 @@
 module dstep.foundation.NSGarbageCollector;
 
 import dstep.foundation.NSObject;
+import dstep.foundation.NSZone;
 import dstep.objc.bridge.Bridge;
-import dstep.objc.objc : id;
+import dstep.objc.objc;
 
 class NSGarbageCollector : NSObject
 {
-	mixin ObjcWrap;
+	mixin (ObjcWrap);
 
-	static Object defaultCollector ()
+	this ()
+	{
+		super(NSGarbageCollector.alloc.init.objcObject);
+	}
+	
+	NSGarbageCollector init ()
 	{
-		return invokeObjcSelfClass!(Object, "defaultCollector");
+		return invokeObjcSelf!(NSGarbageCollector, "init");
+	}
+	
+	static NSGarbageCollector defaultCollector ()
+	{
+		return invokeObjcSuperClass!(NSGarbageCollector, "defaultCollector");
 	}
 
 	bool isCollecting ()