aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Keyword.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Keyword.cc')
-rw-r--r--libqpdf/QPDF_Keyword.cc36
1 files changed, 0 insertions, 36 deletions
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 <qpdf/QPDF_Keyword.hh>
-
-#include <qpdf/QUtil.hh>
-
-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;
-}