#include #include QPDF_Operator::QPDF_Operator(std::string const& val) : val(val) { } QPDF_Operator::~QPDF_Operator() { } std::string QPDF_Operator::unparse() { return this->val; } JSON QPDF_Operator::getJSON() { return JSON::makeNull(); } 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; }