mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-07 06:08:26 +00:00
19 lines
297 B
C++
19 lines
297 B
C++
#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();
|
|
bool getVal() const;
|
|
|
|
private:
|
|
bool val;
|
|
};
|
|
|
|
#endif // __QPDF_BOOL_HH__
|