comparison trunk/src/dil/Converter.d @ 532:50e64bab9c7a

Renamed InformationManager to InfoManager.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 17 Dec 2007 16:10:08 +0100
parents 8f86bb9ef715
children 2a8d0ed0d71e
comparison
equal deleted inserted replaced
531:315aeb3f7a9b 532:50e64bab9c7a
12 12
13 /// Converts various Unicode encoding formats to UTF-8. 13 /// Converts various Unicode encoding formats to UTF-8.
14 struct Converter 14 struct Converter
15 { 15 {
16 char[] filePath; /// For error messages. 16 char[] filePath; /// For error messages.
17 InformationManager infoMan; 17 InfoManager infoMan;
18 18
19 static Converter opCall(char[] filePath, InformationManager infoMan) 19 static Converter opCall(char[] filePath, InfoManager infoMan)
20 { 20 {
21 Converter conv; 21 Converter conv;
22 conv.filePath = filePath; 22 conv.filePath = filePath;
23 conv.infoMan = infoMan; 23 conv.infoMan = infoMan;
24 return conv; 24 return conv;