aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Bool.hh
blob: 90dc590e63c7c6f880e0d65bee728d8feb3579f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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__