aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Discard.cc
blob: 7c7f457a8de5c4414e39f87780cf74bc89584468 (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
24
25
26
#include <qpdf/Pl_Discard.hh>

// Exercised in md5 test suite

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

DLL_EXPORT
Pl_Discard::~Pl_Discard()
{
}

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

DLL_EXPORT
void
Pl_Discard::finish()
{
}