comparison dstep/foundation/NSDateFormatter.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
58 } 58 }
59 `; 59 `;
60 60
61 class NSDateFormatter : NSFormatter 61 class NSDateFormatter : NSFormatter
62 { 62 {
63 mixin (ObjcWrap); 63 mixin ObjcWrap;
64
65 this (id object)
66 {
67 super(object);
68 }
64 69
65 this () 70 this ()
66 { 71 {
67 super(typeof(this).alloc.init.objcObject); 72 super(typeof(this).alloc.init.objcObject);
68 } 73 }