comparison 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
comparison
equal deleted inserted replaced
517:b465c669d70c 518:8f86bb9ef715
15 } 15 }
16 16
17 class InformationManager 17 class InformationManager
18 { 18 {
19 Information[] info; 19 Information[] info;
20
21 void opCatAssign(Information info)
22 {
23 this.info ~= info;
24 }
20 } 25 }
21 26
22 class Problem : Information 27 class Problem : Information
23 { 28 {
24 Location location; 29 Location location;