#include <Object.hh>
Inheritance diagram for pdf::core::CBoolean:
simple class to contain a boolean and output it according to PDF spec
|
construtor to initialize the boolean value
00134 : m_bool( b ) { } |
|
print true or false. Implements pdf::core::CObject.
00099 { 00100 return os << ( m_bool ? "true" : "false" ) ; 00101 } |
|
dynamic clone Implements pdf::core::CObject.
|
|
the underlying boolean
|