2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-03 19:00:51 +00:00
qpdf/libqpdf/qpdf/QPDF_Operator.hh
Jay Berkenbilt bfda717749 Cosmetic changes to be closer to Adobe terminology
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.
2013-01-23 09:38:05 -05:00

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__