Add some FIXMEs because there are some differences to std::stream

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17293 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2007-02-21 21:08:26 +00:00
parent 6965a879b5
commit 69da7e8d3a

View File

@ -61,10 +61,14 @@ public:
};
/// stream is open and end of stream is not reached
/// FIXME: Rename to good() since this is the name of the
/// corresponding std::stream method.
bool isOK() const;
/// stream is ok
/// FIXME: This does not behave like the std::stream counterpart.
operator void const *() const;
/// stream is not ok
/// FIXME: This does not behave like the std::stream counterpart.
bool operator!() const;
/// return true if able to open file, else false
bool setFile(support::FileName const & filename);