mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-05 08:02:11 +00:00
913eb5ac35
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types.
21 lines
434 B
C++
21 lines
434 B
C++
#ifndef __QPDF_INTEGER_HH__
|
|
#define __QPDF_INTEGER_HH__
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_Integer: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_Integer(long long val);
|
|
virtual ~QPDF_Integer();
|
|
virtual std::string unparse();
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
long long getVal() const;
|
|
|
|
private:
|
|
long long val;
|
|
};
|
|
|
|
#endif // __QPDF_INTEGER_HH__
|