@@ -141,37 +141,37 @@ class File : public MemoryPoolObject
141141 virtual void close (); // /< Close the file !!! File object no longer valid after this call !!!
142142
143143 virtual Int read ( void *buffer, Int bytes ) = 0 ; /* *< Read the specified number of bytes from the file in to the
144- * memory pointed at by buffer. Returns the number of bytes read.
145- * Returns -1 if an error occurred.
146- */
144+ * memory pointed at by buffer. Returns the number of bytes read.
145+ * Returns -1 if an error occurred.
146+ */
147147 virtual Int readChar () = 0 ; /* *< Read a character from the file
148- * Returns the character converted to an integer.
149- * Returns EOF if an error occurred.
150- */
148+ * Returns the character converted to an integer.
149+ * Returns EOF if an error occurred.
150+ */
151151 virtual Int readWideChar () = 0 ; /* *< Read a wide character from the file
152- * Returns the wide character converted to an integer.
153- * Returns wide EOF if an error occurred.
154- */
152+ * Returns the wide character converted to an integer.
153+ * Returns wide EOF if an error occurred.
154+ */
155155 virtual Int write ( const void *buffer, Int bytes ) = 0 ; /* *< Write the specified number of bytes from the
156- * memory pointed at by buffer to the file. Returns the number of bytes written.
157- * Returns -1 if an error occurred.
158- */
156+ * memory pointed at by buffer to the file. Returns the number of bytes written.
157+ * Returns -1 if an error occurred.
158+ */
159159 virtual Int writeFormat ( const Char* format, ... ) = 0 ; /* *< Write an unterminated formatted string to the file
160- * Returns the number of bytes written.
161- * Returns -1 if an error occurred.
162- */
160+ * Returns the number of bytes written.
161+ * Returns -1 if an error occurred.
162+ */
163163 virtual Int writeFormat ( const WideChar* format, ... ) = 0 ; /* *< Write an unterminated formatted wide character string to the file
164- * Returns the number of bytes written.
165- * Returns -1 if an error occurred.
166- */
164+ * Returns the number of bytes written.
165+ * Returns -1 if an error occurred.
166+ */
167167 virtual Int writeChar ( const Char* character ) = 0 ; /* *< Write a character to the file
168- * Returns a copy of the character written.
169- * Returns EOF if an error occurred.
170- */
168+ * Returns a copy of the character written.
169+ * Returns EOF if an error occurred.
170+ */
171171 virtual Int writeChar ( const WideChar* character ) = 0 ; /* *< Write a wide character to the file
172- * Returns a copy of the wide character written.
173- * Returns wide EOF if an error occurred.
174- */
172+ * Returns a copy of the wide character written.
173+ * Returns wide EOF if an error occurred.
174+ */
175175 virtual Int seek ( Int bytes, seekMode mode = CURRENT ) = 0; /* *< Sets the file position of the next read/write operation. Returns the new file
176176 * position as the number of bytes from the start of the file.
177177 * Returns -1 if an error occurred.
0 commit comments