Changeset 3152
- Timestamp:
- 02/01/08 00:24:44 (8 months ago)
- Files:
-
- trunk/tango/io/stream/MapStream.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/io/stream/MapStream.d
r2885 r3152 118 118 private IBuffer output; 119 119 120 private const T[] prefix = "# "; 120 121 private const T[] equals = " = "; 121 122 version (Win32) … … 148 149 /*********************************************************************** 149 150 150 Write name & value to the provided stream 151 Append a newline to the provided stream 152 153 ***********************************************************************/ 154 155 final MapOutput newline () 156 { 157 output (NL); 158 return this; 159 } 160 161 /*********************************************************************** 162 163 Append a comment to the provided stream 164 165 ***********************************************************************/ 166 167 final MapOutput comment (T[] text) 168 { 169 output (prefix) (text) (NL); 170 return this; 171 } 172 173 /*********************************************************************** 174 175 Append name & value to the provided stream 151 176 152 177 ***********************************************************************/ … … 160 185 /*********************************************************************** 161 186 162 WriteAA properties to the provided stream187 Append AA properties to the provided stream 163 188 164 189 ***********************************************************************/












