qpdf/libqpdf/Pl_String.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
681 B
C++
Raw Normal View History

2022-05-03 22:54:44 +00:00
#include <qpdf/Pl_String.hh>
#include <stdexcept>
Pl_String::Members::Members(std::string& s) :
s(s)
{
}
2022-05-06 21:37:25 +00:00
Pl_String::Pl_String(char const* identifier, Pipeline* next, std::string& s) :
Pipeline(identifier, next),
2022-05-03 22:54:44 +00:00
m(new Members(s))
{
}
Pl_String::~Pl_String() // NOLINT (modernize-use-equals-default)
2022-05-03 22:54:44 +00:00
{
// Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer
}
void
Pl_String::write(unsigned char const* buf, size_t len)
{
m->s.append(reinterpret_cast<char const*>(buf), len);
2022-05-06 21:37:25 +00:00
if (getNext(true)) {
getNext()->write(buf, len);
}
2022-05-03 22:54:44 +00:00
}
void
Pl_String::finish()
{
2022-05-06 21:37:25 +00:00
if (getNext(true)) {
getNext()->finish();
}
2022-05-03 22:54:44 +00:00
}