* Forgot to implement isOpenForRead/Writing in TextStream

* Changed isOpenForReading/Writing to const int Stream
This commit is contained in:
Antidote
2013-01-27 12:28:59 -08:00
parent 6c5e489f71
commit a0e341f5cf
3 changed files with 16 additions and 6 deletions

View File

@@ -193,13 +193,13 @@ public:
*
* \return True if open for reading; False otherwise.
*/
virtual bool isOpenForReading();
virtual bool isOpenForReading() const;
/*! \brief Retuns whether or not the Stream is open for writing
*
* \return True if open for writing; False otherwise.
*/
virtual bool isOpenForWriting();
virtual bool isOpenForWriting() const;
/*! \brief Sets the Endianss of the stream
*