diff dstep/objc/bridge/Bridge.d @ 11:07194b026fa4

Added bindings to a couple of frameworks, new license + some other things
author Jacob Carlborg <doob@me.com>
date Sat, 01 Aug 2009 15:03:28 +0200
parents 9fd439a28ce3
children 19885b43130e
line wrap: on
line diff
--- a/dstep/objc/bridge/Bridge.d	Thu Jul 09 23:25:18 2009 +0200
+++ b/dstep/objc/bridge/Bridge.d	Sat Aug 01 15:03:28 2009 +0200
@@ -6,8 +6,6 @@
  */
 module dstep.objc.bridge.Bridge;
 
-import mambo.io;
-
 version (Tango)
 {
 	import tango.core.Memory;
@@ -89,12 +87,12 @@
 		super(object);
 	}
 	
-	static typeof(this) alloc ()
+	/*static typeof(this) alloc ()
 	{
 		return invokeObjcSelfClass!(typeof(this), "alloc");
-	}
+	}*/
 	
-	typeof(this) init ()
+	/*typeof(this) init ()
 	{
 		id ret = invokeObjcSelf!(id, "init");
 		
@@ -111,7 +109,7 @@
 		object.dObject = this;
 		
 		return object;
-	}
+	}*/
 	
 	mixin ObjcSubclassInitializer!("D_" ~ name, name);
 }