18 Ağustos 2016 Perşembe

iostreams

Giriş
Sıkıştırma işlemleri için iostreams kütüphanesi ile linklemek gerekir. Derlemek için şöyle yaparız.
./bootstrap.sh --prefix=/home/myhome/boost --with-libraries=...,iostreams,...
Free Style Metodlar
copy metodu
Şu satırı dahil ederiz.
#include <boost/iostreams/copy.hpp>
input stream'i output stream'e kopyalar. Şöyle yaparız.
boost::iostreams::filtering_streambuf<boost::iostreams::input> inbuf = ...;
std::ostream tempfile = ...;
boost::iostreams::copy(inbuf, tempfile); 

Hiç yorum yok:

Yorum Gönder