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.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/libqpdf/QPDF_Keyword.cc b/libqpdf/QPDF_Keyword.cc
new file mode 100644
index 00000000..e2537842
--- /dev/null
+++ b/libqpdf/QPDF_Keyword.cc
@@ -0,0 +1,24 @@
+#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;
+}
+
+std::string
+QPDF_Keyword::getVal() const
+{
+ return this->val;
+}