aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Discard.cc
blob: 7b9407a16d4b93815deeefbf6379ab786114d36f (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, int len)
{
}

void
Pl_Discard::finish()
{
}