comparison dstep/quartzcore/CIImage.d @ 22:f8a3b67adfcb

Removed duplicated methods
author Jacob Carlborg <doob@me.com>
date Tue, 09 Feb 2010 18:02:03 +0100
parents 19885b43130e
children b9de51448c6b
comparison
equal deleted inserted replaced
21:6b688d8f62c5 22:f8a3b67adfcb
70 70
71 typeof(this) initWithCoder (NSCoder aDecoder) 71 typeof(this) initWithCoder (NSCoder aDecoder)
72 { 72 {
73 return invokeObjcSelf!(typeof(this), "initWithCoder:", NSCoder)(aDecoder); 73 return invokeObjcSelf!(typeof(this), "initWithCoder:", NSCoder)(aDecoder);
74 } 74 }
75
76 typeof(this) copyWithZone (NSZone* zone)
77 {
78 return invokeObjcSelf!(typeof(this), "copyWithZone:", NSZone*)(zone);
79 }
80 75
81 static CIImage imageWithCGImage (CGImageRef image) 76 static CIImage imageWithCGImage (CGImageRef image)
82 { 77 {
83 return invokeObjcSelfClass!(CIImage, "imageWithCGImage:", CGImageRef)(image); 78 return invokeObjcSelfClass!(CIImage, "imageWithCGImage:", CGImageRef)(image);
84 } 79 }