Changeset 308:8d53428f9be0

Show
Ignore:
Timestamp:
09/14/08 13:58:20 (2 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Tango breaking change for new package tango.io.device

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/FileInputStream.d

    r212 r308  
    88import dwt.dwthelper.InputStream; 
    99 
     10version(TANGOSVN){ 
     11import tango.io.device.FileConduit; 
     12} else { 
    1013import tango.io.FileConduit; 
     14} 
    1115import tango.io.protocol.Reader; 
    1216import tango.core.Exception; 
  • dwt/dwthelper/FileOutputStream.d

    r242 r308  
    99import dwt.dwthelper.utils; 
    1010 
     11version(TANGOSVN){ 
     12import tango.io.device.FileConduit; 
     13} else { 
    1114import tango.io.FileConduit; 
     15} 
    1216 
    1317public class FileOutputStream : dwt.dwthelper.OutputStream.OutputStream { 
  • dwt/dwthelper/InflaterInputStream.d

    r264 r308  
    1313    } 
    1414} 
    15 import tango.io.Conduit; 
     15version(TANGOSVN){ 
     16    import tango.io.device.Conduit; 
     17} else { 
     18    import tango.io.Conduit; 
     19
    1620 
    1721class InputStreamWrapper : tango.io.model.IConduit.InputStream {