#include <Object.hh>
Inheritance diagram for pdf::core::CObjRef:
the object reference class is an indirect reference to a PDF object, if that PDF object has an unique identifier. such objects are represented by the CRefObj class.
this class will contain the identifier of the referenced object. when writing a CObjRef to a PDF file, the indirect reference will be outputed.
|
construct a object with the object identifier
00081 : m_id( id ) { } |
|
destructor do nothing
00084 { } |
|
output the indirect reference to the PDF file stream Implements pdf::core::CObject.
00085 { 00086 return os << m_id << " 0 R" ; 00087 } |
|
dynamic clone. Implements pdf::core::CObject.
|
|
return the object ID
00091 { return m_id ; } |
|
the object identifier
|