Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>a stdio file streambuf</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
A stdio FILE streambuf

   An stdiobuf can be used instead of a filebuf when it is desired to mix
   I/O using the C standard library stdio facilities, and C++ stream output.
   New code should use filebufs, which should be substantially more
   efficient, since stdiobuf operations are unbuffered.

   The public interface differs from that of class streambuf as follows:

   class stdiobuf : public streambuf {
   public:
       stdiobuf(FILE *);
       FILE *stdiofile() const;
       ...;
   };

   Users of this class need to include stdiobuf.hpp.





Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson