2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-08 21:22:25 +00:00
qpdf/libqpdf/qpdf/QPDF_Bool.hh

22 lines
417 B
C++
Raw Normal View History

#ifndef QPDF_BOOL_HH
#define QPDF_BOOL_HH
#include <qpdf/QPDFObject.hh>
class QPDF_Bool: public QPDFObject
{
public:
QPDF_Bool(bool val);
virtual ~QPDF_Bool();
virtual std::string unparse();
2018-12-17 22:40:29 +00:00
virtual JSON getJSON();
virtual QPDFObject::object_type_e getTypeCode() const;
virtual char const* getTypeName() const;
bool getVal() const;
private:
bool val;
};
#endif // QPDF_BOOL_HH