mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
81e8752362
off_t is used internally only when needed to talk to standard libraries. This requires that the "long long" type be supported by the compiler.
42 lines
554 B
C++
42 lines
554 B
C++
#include <qpdf/Pl_Count.hh>
|
|
|
|
Pl_Count::Pl_Count(char const* identifier, Pipeline* next) :
|
|
Pipeline(identifier, next),
|
|
count(0),
|
|
last_char('\0')
|
|
{
|
|
}
|
|
|
|
Pl_Count::~Pl_Count()
|
|
{
|
|
}
|
|
|
|
void
|
|
Pl_Count::write(unsigned char* buf, size_t len)
|
|
{
|
|
if (len)
|
|
{
|
|
this->count += len;
|
|
getNext()->write(buf, len);
|
|
this->last_char = buf[len - 1];
|
|
}
|
|
}
|
|
|
|
void
|
|
Pl_Count::finish()
|
|
{
|
|
getNext()->finish();
|
|
}
|
|
|
|
qpdf_offset_t
|
|
Pl_Count::getCount() const
|
|
{
|
|
return this->count;
|
|
}
|
|
|
|
unsigned char
|
|
Pl_Count::getLastChar() const
|
|
{
|
|
return this->last_char;
|
|
}
|