comparison dstep/foundation/NSMethodSignature.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
11 import dstep.objc.bridge.Bridge; 11 import dstep.objc.bridge.Bridge;
12 import dstep.objc.objc; 12 import dstep.objc.objc;
13 13
14 class NSMethodSignature : NSObject 14 class NSMethodSignature : NSObject
15 { 15 {
16 mixin (ObjcWrap); 16 mixin ObjcWrap;
17
18 this (id object)
19 {
20 super(object);
21 }
17 22
18 this () 23 this ()
19 { 24 {
20 super(typeof(this).alloc.init.objcObject); 25 super(typeof(this).alloc.init.objcObject);
21 } 26 }