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

// Exercised in md5 test suite

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

Pl_Discard::~Pl_Discard()
{
}

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

void
Pl_Discard::finish()
{
}