comparison src/zfstream.h @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children f4689107dd8c
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
1 /* 1 /*
2 2
3 Copyright (C) 2005-2011 Ludwig Schwardt, Kevin Ruland 3 Copyright (C) 2005-2011 Ludwig Schwardt, Kevin Ruland
4 4
5 This file is part of Octave. 5 This file is part of Octave.
6 6
7 Octave is free software; you can redistribute it and/or modify it 7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the 8 under the terms of the GNU General Public License as published by the
175 * 175 *
176 * Each derived class provides its own appropriate behavior. 176 * Each derived class provides its own appropriate behavior.
177 */ 177 */
178 virtual pos_type 178 virtual pos_type
179 seekoff(off_type off, std::ios_base::seekdir way, 179 seekoff(off_type off, std::ios_base::seekdir way,
180 std::ios_base::openmode mode = 180 std::ios_base::openmode mode =
181 std::ios_base::in|std::ios_base::out); 181 std::ios_base::in|std::ios_base::out);
182 182
183 /** 183 /**
184 * @brief Alters the stream positions. 184 * @brief Alters the stream positions.
185 * 185 *
186 * Each derived class provides its own appropriate behavior. 186 * Each derived class provides its own appropriate behavior.
187 */ 187 */
188 virtual pos_type 188 virtual pos_type
189 seekpos(pos_type sp, std::ios_base::openmode mode = 189 seekpos(pos_type sp, std::ios_base::openmode mode =
190 std::ios_base::in|std::ios_base::out); 190 std::ios_base::in|std::ios_base::out);
191 191
192 virtual int_type 192 virtual int_type
193 pbackfail (int_type c = traits_type::eof()); 193 pbackfail (int_type c = traits_type::eof());
194 194