diff dstep/foundation/NSAutoreleasePool.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dstep/foundation/NSAutoreleasePool.d	Mon Aug 03 15:23:15 2009 +0200
@@ -0,0 +1,33 @@
+/**
+ * Copyright: Copyright (c) 2009 Jacob Carlborg.
+ * Authors: Jacob Carlborg
+ * Version: Initial created: Aug 3, 2009 
+ * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
+ */
+module dstep.foundation.NSAutoreleasePool;
+
+import dstep.foundation.NSObject;
+import dstep.objc.bridge.Bridge;
+import dstep.objc.objc : id;
+
+class NSAutoreleasePool : NSObject
+{
+	mixin ObjcWrap;
+	mixin TNSAutoreleasePoolDebugging;
+
+	static void addObject (Object anObject)
+	{
+		return invokeObjcSelfClass!(void, "addObject:", Object)(anObject);
+	}
+
+	void addObject (Object anObject)
+	{
+		return invokeObjcSelf!(void, "addObject:", Object)(anObject);
+	}
+
+	void drain ()
+	{
+		return invokeObjcSelf!(void, "drain");
+	}
+}
+