mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
bfda717749
Change object type Keyword to Operator, and place the order of the object types in object_type_e in the same order as they are mentioned in the PDF specification. Note that this change only breaks backward compatibility with code that has not yet been released.
37 lines
479 B
C++
37 lines
479 B
C++
#include <qpdf/QPDF_Operator.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
QPDF_Operator::QPDF_Operator(std::string const& val) :
|
|
val(val)
|
|
{
|
|
}
|
|
|
|
QPDF_Operator::~QPDF_Operator()
|
|
{
|
|
}
|
|
|
|
std::string
|
|
QPDF_Operator::unparse()
|
|
{
|
|
return this->val;
|
|
}
|
|
|
|
QPDFObject::object_type_e
|
|
QPDF_Operator::getTypeCode() const
|
|
{
|
|
return QPDFObject::ot_operator;
|
|
}
|
|
|
|
char const*
|
|
QPDF_Operator::getTypeName() const
|
|
{
|
|
return "operator";
|
|
}
|
|
|
|
std::string
|
|
QPDF_Operator::getVal() const
|
|
{
|
|
return this->val;
|
|
}
|