aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Discard.cc
blob: 1632ea23c80a4201ea9bfedbfdff0c391c6a3497 (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", 0)
{
}

Pl_Discard::~Pl_Discard()
{
}

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

void
Pl_Discard::finish()
{
}