From bfda71774907263f5263a3ae2e8c8fa40fbc2cca Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Wed, 23 Jan 2013 09:38:05 -0500 Subject: 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. --- libqpdf/QPDF_Keyword.cc | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 libqpdf/QPDF_Keyword.cc (limited to 'libqpdf/QPDF_Keyword.cc') diff --git a/libqpdf/QPDF_Keyword.cc b/libqpdf/QPDF_Keyword.cc deleted file mode 100644 index f55088e2..00000000 --- a/libqpdf/QPDF_Keyword.cc +++ /dev/null @@ -1,36 +0,0 @@ -#include - -#include - -QPDF_Keyword::QPDF_Keyword(std::string const& val) : - val(val) -{ -} - -QPDF_Keyword::~QPDF_Keyword() -{ -} - -std::string -QPDF_Keyword::unparse() -{ - return this->val; -} - -QPDFObject::object_type_e -QPDF_Keyword::getTypeCode() const -{ - return QPDFObject::ot_keyword; -} - -char const* -QPDF_Keyword::getTypeName() const -{ - return "keyword"; -} - -std::string -QPDF_Keyword::getVal() const -{ - return this->val; -} -- cgit v1.2.3-54-g00ecf