mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 11:46:35 +00:00
23 lines
242 B
C++
23 lines
242 B
C++
|
#include <qpdf/QPDF_Bool.hh>
|
||
|
|
||
|
QPDF_Bool::QPDF_Bool(bool val) :
|
||
|
val(val)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QPDF_Bool::~QPDF_Bool()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
std::string
|
||
|
QPDF_Bool::unparse()
|
||
|
{
|
||
|
return (val ? "true" : "false");
|
||
|
}
|
||
|
|
||
|
bool
|
||
|
QPDF_Bool::getVal() const
|
||
|
{
|
||
|
return this->val;
|
||
|
}
|