comparison dstep/quartzcore/CATiledLayer.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.objc; 11 import dstep.objc.objc;
12 import dstep.quartzcore.CALayer; 12 import dstep.quartzcore.CALayer;
13 13
14 class CATiledLayer : CALayer 14 class CATiledLayer : CALayer
15 { 15 {
16 mixin (ObjcWrap); 16 mixin ObjcWrap;
17
18 this (id object)
19 {
20 super(object);
21 }
17 22
18 static double fadeDuration () 23 static double fadeDuration ()
19 { 24 {
20 return invokeObjcSelfClass!(double, "fadeDuration"); 25 return invokeObjcSelfClass!(double, "fadeDuration");
21 } 26 }