Line | Count | Source |
1 | #include <qpdf/Pl_Discard.hh> | |
2 | ||
3 | // Exercised in md5 test suite | |
4 | ||
5 | Pl_Discard::Pl_Discard() : | |
6 | Pipeline("discard", nullptr) | |
7 | 135 | { |
8 | 135 | } |
9 | ||
10 | Pl_Discard::~Pl_Discard() // NOLINT (modernize-use-equals-default) | |
11 | 135 | { |
12 | // Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer | |
13 | 135 | } |
14 | ||
15 | void | |
16 | Pl_Discard::write(unsigned char const* buf, size_t len) | |
17 | 1.07k | { |
18 | 1.07k | } |
19 | ||
20 | void | |
21 | Pl_Discard::finish() | |
22 | 101 | { |
23 | 101 | } |