diff trunk/src/dil/Information.d @ 518:8f86bb9ef715

Added module dil.Converter and dil.FileBOM. Moved code from dil.File to dil.FileBOM. Added opCatAssign to class InformationManager. Added encode() function to dil.Unicode.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 15 Dec 2007 18:55:06 +0100
parents 6ddff941862a
children 50e64bab9c7a
line wrap: on
line diff
--- a/trunk/src/dil/Information.d	Fri Dec 14 23:10:35 2007 +0100
+++ b/trunk/src/dil/Information.d	Sat Dec 15 18:55:06 2007 +0100
@@ -17,6 +17,11 @@
 class InformationManager
 {
   Information[] info;
+
+  void opCatAssign(Information info)
+  {
+    this.info ~= info;
+  }
 }
 
 class Problem : Information