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.
24 lines
276 B
C++
24 lines
276 B
C++
#include <qpdf/QPDF_Null.hh>
|
|
|
|
QPDF_Null::~QPDF_Null()
|
|
{
|
|
}
|
|
|
|
std::string
|
|
QPDF_Null::unparse()
|
|
{
|
|
return "null";
|
|
}
|
|
|
|
QPDFObject::object_type_e
|
|
QPDF_Null::getTypeCode() const
|
|
{
|
|
return QPDFObject::ot_null;
|
|
}
|
|
|
|
char const*
|
|
QPDF_Null::getTypeName() const
|
|
{
|
|
return "null";
|
|
}
|