Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • qpdf
  • libqpdf
  • QPDF_Keyword.cc
  • Added new QPDFObjectHandle types Keyword and InlineImage ...
    1d88955f
    These object types are to facilitate content stream parsing.
    Jay Berkenbilt authored
    2013-01-20 15:35:39 -0500  
    Browse Code ยป
QPDF_Keyword.cc 295 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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;
}