diff dwtx/jface/dialogs/IDialogSettings.d @ 19:2b36428a5ce4

DialogSettings
author Frank Benoit <benoit@tionex.de>
date Thu, 03 Apr 2008 00:25:45 +0200
parents a3ff22a98bef
children
line wrap: on
line diff
--- a/dwtx/jface/dialogs/IDialogSettings.d	Tue Apr 01 08:32:04 2008 +0200
+++ b/dwtx/jface/dialogs/IDialogSettings.d	Thu Apr 03 00:25:45 2008 +0200
@@ -18,6 +18,8 @@
 
 import dwt.dwthelper.utils;
 
+static import tango.io.model.IConduit;
+
 /**
  * An interface to a storage mechanism for making dialog settings persistent.
  * The store manages a collection of key/value pairs. The keys must be strings
@@ -163,7 +165,7 @@
      *            from.
      * @throws IOException
      */
-    public void load(Reader reader);
+    public void load(tango.io.model.IConduit.InputStream reader);
 
     /**
      * Load a dialog settings from a file and fill the receiver with its
@@ -257,7 +259,7 @@
      *            a Writer specifying the stream the settings are written in.
      * @throws IOException
      */
-    public void save(Writer writer);
+    public void save(tango.io.model.IConduit.OutputStream writer);
 
     /**
      * Save a dialog settings to a file.