Changeset 213:36f5cb12e1a2 for dwt/internal/image/LEDataOutputStream.d
- Timestamp:
- 05/17/08 11:34:28 (6 months ago)
- Files:
-
- dwt/internal/image/LEDataOutputStream.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/image/LEDataOutputStream.d
r48 r213 1 /*******************************************************************************1 /******************************************************************************* 2 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials … … 17 17 18 18 final class LEDataOutputStream : OutputStream { 19 19 20 alias OutputStream.write write; 21 20 22 OutputStream ostr; 23 21 24 public this(OutputStream output) { 22 25 this.ostr = output; … … 26 29 * starting at the specified offset, to the output stream. 27 30 */ 28 override publicvoid write(byte b[], int off, int len) {31 public override void write(byte b[], int off, int len) { 29 32 ostr.write(b, off, len); 30 33 } … … 32 35 * Write the given byte to the output stream. 33 36 */ 34 override publicvoid write(int b) {37 public override void write(int b) { 35 38 ostr.write(b); 36 39 }
