mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-03 04:18:24 +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.
21 lines
453 B
C++
21 lines
453 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 QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
std::string getVal() const;
|
|
|
|
private:
|
|
std::string val;
|
|
};
|
|
|
|
#endif // __QPDF_OPERATOR_HH__
|