2013-01-23 14:38:05 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2018-12-17 22:40:29 +00:00
|
|
|
JSON
|
|
|
|
QPDF_Operator::getJSON()
|
|
|
|
{
|
|
|
|
return JSON::makeNull();
|
|
|
|
}
|
|
|
|
|
2013-01-23 14:38:05 +00:00
|
|
|
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;
|
|
|
|
}
|