Tagged Questions
5
votes
2answers
451 views
Recommendations for a C++ polymorphic, seekable, binary I/O interface
I've been using std::istream and ostream as a polymorphic interface for random-access binary I/O in C++, but it seems suboptimal in numerous ways:
64-bit seeks are non-portable and error-prone due ...
1
vote
1answer
906 views
Need help on asynchrous non-blocking file loading with boost::asio and boost::iostreams ( or something different? )
I'm coding in c++, and I'm trying to load an image file asynchronously. After some research, I found some mentions about using boost::asio and boost::iostreams to do it. However, the documentation and ...