aboutsummaryrefslogtreecommitdiff
path: root/common/stream.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /common/stream.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'common/stream.h')
-rw-r--r--common/stream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/stream.h b/common/stream.h
index d3f47b1b5d..a89e5475dd 100644
--- a/common/stream.h
+++ b/common/stream.h
@@ -40,12 +40,12 @@ public:
* Returns true if any I/O failure occured.
* This flag is never cleared automatically. In order to clear it,
* client code has to call clearIOFailed() explicitly.
- *
+ *
* @todo Instead of returning a plain bool, maybe we should define
* a list of error codes which can be returned here.
*/
virtual bool ioFailed() const { return false; }
-
+
/**
* Reset the I/O error status.
*/
@@ -114,7 +114,7 @@ public:
void writeSint32BE(int32 value) {
writeUint32BE((uint32)value);
}
-
+
void writeString(const String &str);
};
@@ -205,16 +205,16 @@ public:
*/
class SeekableReadStream : public ReadStream {
public:
-
+
virtual uint32 pos() const = 0;
virtual uint32 size() const = 0;
virtual void seek(int32 offs, int whence = SEEK_SET) = 0;
-
+
/**
* Read one line of text from a CR or CR/LF terminated plain text file.
- * This method is a rough analog of the (f)gets function.
- *
+ * This method is a rough analog of the (f)gets function.
+ *
* @param buf the buffer to store into
* @param bufSize the size of the buffer
* @return a pointer to the read string, or NULL if an error occured