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 11:37:50 +00:00
|
|
|
Pipeline("discard", nullptr)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-06-01 13:47:36 +00:00
|
|
|
Pl_Discard::~Pl_Discard() // NOLINT (modernize-use-equals-default)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2022-04-15 23:44:07 +00: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 21:43:07 +00:00
|
|
|
Pl_Discard::write(unsigned char const* buf, size_t len)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_Discard::finish()
|
|
|
|
{
|
|
|
|
}
|