mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
79f6b4823b
Have classes contain only a single private member of type PointerHolder<Members>. This makes it safe to change the structure of the Members class without breaking binary compatibility. Many of the classes already follow this pattern quite successfully. This brings in the rest of the class that are part of the public API.
31 lines
316 B
C++
31 lines
316 B
C++
#include <qpdf/Pl_Discard.hh>
|
|
|
|
// Exercised in md5 test suite
|
|
|
|
Pl_Discard::Members::Members()
|
|
{
|
|
}
|
|
|
|
Pl_Discard::Members::~Members()
|
|
{
|
|
}
|
|
|
|
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()
|
|
{
|
|
}
|