mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
913eb5ac35
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types.
37 lines
513 B
C++
37 lines
513 B
C++
#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;
|
|
}
|
|
|
|
QPDFObject::object_type_e
|
|
QPDF_InlineImage::getTypeCode() const
|
|
{
|
|
return QPDFObject::ot_inlineimage;
|
|
}
|
|
|
|
char const*
|
|
QPDF_InlineImage::getTypeName() const
|
|
{
|
|
return "inline-image";
|
|
}
|
|
|
|
std::string
|
|
QPDF_InlineImage::getVal() const
|
|
{
|
|
return this->val;
|
|
}
|