Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • qpdf
  • libqpdf
  • QPDF_InlineImage.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_InlineImage.cc 323 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_InlineImage.hh>

#include <qpdf/QUtil.hh>

QPDF_InlineImage::QPDF_InlineImage(std::string const& val) :
    val(val)
{
}

QPDF_InlineImage::~QPDF_InlineImage()
{
}

std::string
QPDF_InlineImage::unparse()
{
    return this->val;
}

std::string
QPDF_InlineImage::getVal() const
{
    return this->val;
}