mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
39bfa01307
Refactor QPDF_Stream to use stream filter classes to handle supported stream filters as well.
20 lines
284 B
C++
20 lines
284 B
C++
#include <qpdf/QPDFStreamFilter.hh>
|
|
|
|
bool
|
|
QPDFStreamFilter::setDecodeParms(QPDFObjectHandle decode_parms)
|
|
{
|
|
return decode_parms.isNull();
|
|
}
|
|
|
|
bool
|
|
QPDFStreamFilter::isSpecializedCompression()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
QPDFStreamFilter::isLossyCompression()
|
|
{
|
|
return false;
|
|
}
|