]> git.lyx.org Git - features.git/commitdiff
Add some FIXMEs because there are some differences to std::stream
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 21 Feb 2007 21:08:26 +0000 (21:08 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 21 Feb 2007 21:08:26 +0000 (21:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17293 a592a061-630c-0410-9148-cb99ea01b6c8

src/lyxlex.h

index 7f6cc26e0225487f7b5da7ffa47bb1d95bce774d..0c1469a9eec86c6e541bbe803f6601f35992400f 100644 (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);