comparison dstep/foundation/NSUndoManager.d @ 25:b9de51448c6b

Added an id constructor. Changed the string mixin to a template mixin. Added support for building as a dynamic library
author Jacob Carlborg <doob@me.com>
date Tue, 06 Apr 2010 11:37:27 +0200
parents 19885b43130e
children
comparison
equal deleted inserted replaced
24:ab33fc0c3fc1 25:b9de51448c6b
89 NSUndoCloseGroupingRunLoopOrdering = 350000 89 NSUndoCloseGroupingRunLoopOrdering = 350000
90 } 90 }
91 91
92 class NSUndoManager : NSObject 92 class NSUndoManager : NSObject
93 { 93 {
94 mixin (ObjcWrap); 94 mixin ObjcWrap;
95
96 this (id object)
97 {
98 super(object);
99 }
95 100
96 this () 101 this ()
97 { 102 {
98 super(typeof(this).alloc.init.objcObject); 103 super(typeof(this).alloc.init.objcObject);
99 } 104 }