aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Discard.cc
blob: 643d3e4f29212cf18c2fa2bbfb285bd549cb6ecb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <qpdf/Pl_Discard.hh>

// Exercised in md5 test suite

Pl_Discard::Pl_Discard() :
    Pipeline("discard", nullptr)
{
}

Pl_Discard::~Pl_Discard() // NOLINT (modernize-use-equals-default)
{
    // Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer
}

void
Pl_Discard::write(unsigned char const* buf, size_t len)
{
}

void
Pl_Discard::finish()
{
}