2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/Pl_Discard.hh>
|
|
|
|
|
|
|
|
// Exercised in md5 test suite
|
|
|
|
|
|
|
|
Pl_Discard::Pl_Discard() :
|
2022-07-26 12:37:50 +01:00
|
|
|
Pipeline("discard", nullptr)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-06-01 14:47:36 +01:00
|
|
|
Pl_Discard::~Pl_Discard() // NOLINT (modernize-use-equals-default)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2023-05-27 18:19:52 +01:00
|
|
|
// Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-05-03 17:43:07 -04:00
|
|
|
Pl_Discard::write(unsigned char const* buf, size_t len)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_Discard::finish()
|
|
|
|
{
|
|
|
|
}
|