#include <NodeBase.hh>
Inheritance diagram for pdf::page::CNodeBase:
this class represent a node in a PDF page tree. it can be either a leaf node or a branch node, depending on derived class. the classes of leaf node (CPage) and branch node (CTreeNode) are derived from this class.
the CNodeBase class contains a resource dictionary, which contains the resources usable by the content stream in the page. if it is a branch node, its resource dictionary can be inherited by the child nodes.
|
the destructor is pure virtual to make this class a abstract base class.
00037 { 00038 } |
|
allows the derived classes to access the resource dictionary directly
00063 { return m_resources ; } |