-
Notifications
You must be signed in to change notification settings - Fork 1
nstream Tutorial
novalexei edited this page Oct 19, 2017
·
6 revisions
Writing C++ input/output streams with nova::stream is as easy as writing your own sink or source class with simple interface and providing it as a template argument to stream. The idea is very similar to the one in boost::iostreams. If you're already familiar with boost::iostreams and want to know why I wrote nova::stream and how is it different, see "Why new stream library" section.
- Writing input stream with source
- Writing output stream with sink
- Writing input stream with in_buffer_provider
- Writing output stream with out_buffer_provider
- Input-output with shared devices
Appendices: