mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-04 12:34:20 +00:00
22 lines
487 B
C++
22 lines
487 B
C++
#ifndef QPDF_INLINEIMAGE_HH
|
|
#define QPDF_INLINEIMAGE_HH
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_InlineImage: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_InlineImage(std::string const& val);
|
|
virtual ~QPDF_InlineImage();
|
|
virtual std::string unparse();
|
|
virtual JSON getJSON();
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
std::string getVal() const;
|
|
|
|
private:
|
|
std::string val;
|
|
};
|
|
|
|
#endif // QPDF_INLINEIMAGE_HH
|