diff dstep/foundation/NSProcessInfo.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 7ff919f595d5
children b9de51448c6b
line wrap: on
line diff
--- a/dstep/foundation/NSProcessInfo.d	Mon Aug 03 15:31:48 2009 +0200
+++ b/dstep/foundation/NSProcessInfo.d	Sun Jan 03 22:06:11 2010 +0100
@@ -8,10 +8,11 @@
 
 import dstep.foundation.NSArray;
 import dstep.foundation.NSDictionary;
+import dstep.foundation.NSObjCRuntime;
 import dstep.foundation.NSObject;
 import dstep.foundation.NSString;
 import dstep.objc.bridge.Bridge;
-import dstep.objc.objc : id;
+import dstep.objc.objc;
 
 enum
 {
@@ -26,11 +27,21 @@
 
 class NSProcessInfo : NSObject
 {
-	mixin ObjcWrap;
+	mixin (ObjcWrap);
+	
+	this ()
+	{
+		super(typeof(this).alloc.init.objcObject);
+	}
+	
+	typeof(this) init ()
+	{
+		return invokeObjcSelf!(typeof(this), "init");
+	}
 
 	static NSProcessInfo processInfo ()
 	{
-		return invokeObjcSelfClass!(NSProcessInfo, "processInfo");
+		return invokeObjcSuperClass!(NSProcessInfo, "processInfo");
 	}
 
 	NSDictionary environment ()