aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Operator.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDF_Operator.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Operator.hh20
1 files changed, 20 insertions, 0 deletions
diff --git a/libqpdf/qpdf/QPDF_Operator.hh b/libqpdf/qpdf/QPDF_Operator.hh
new file mode 100644
index 00000000..9d18ad37
--- /dev/null
+++ b/libqpdf/qpdf/QPDF_Operator.hh
@@ -0,0 +1,20 @@
+#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__