comparison dwt/dwthelper/FileOutputStream.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 5406a8f6526d
children 32a6819fef61
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
11 public class FileOutputStream : dwt.dwthelper.OutputStream.OutputStream { 11 public class FileOutputStream : dwt.dwthelper.OutputStream.OutputStream {
12 12
13 alias dwt.dwthelper.OutputStream.OutputStream.write write; 13 alias dwt.dwthelper.OutputStream.OutputStream.write write;
14 alias dwt.dwthelper.OutputStream.OutputStream.close close; 14 alias dwt.dwthelper.OutputStream.OutputStream.close close;
15 15
16 public this ( char[] name ){ 16 public this ( String name ){
17 implMissing( __FILE__, __LINE__ ); 17 implMissing( __FILE__, __LINE__ );
18 } 18 }
19 19
20 public this ( char[] name, bool append ){ 20 public this ( String name, bool append ){
21 implMissing( __FILE__, __LINE__ ); 21 implMissing( __FILE__, __LINE__ );
22 } 22 }
23 23
24 public this ( dwt.dwthelper.File.File file ){ 24 public this ( dwt.dwthelper.File.File file ){
25 implMissing( __FILE__, __LINE__ ); 25 implMissing( __FILE__, __LINE__ );