mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-23 03:18:59 +00:00
22 lines
469 B
C++
22 lines
469 B
C++
#ifndef QPDF_OPERATOR_HH
|
|
#define QPDF_OPERATOR_HH
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_Operator: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_Operator(std::string const& val);
|
|
virtual ~QPDF_Operator();
|
|
virtual std::string unparse();
|
|
virtual JSON getJSON();
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
std::string getVal() const;
|
|
|
|
private:
|
|
std::string val;
|
|
};
|
|
|
|
#endif // QPDF_OPERATOR_HH
|