#include <XObject.hh>
Inheritance diagram for pdf::graph::CXObject:
this class represent the PDF xobject base class. derived classes are different kinds of xobjects defined in the PDF spec. they include images, form xobjects etc.
this class is for derived only. it doesn't have any members. its constructor is protected.
|
the constructor will tell the CResource base class that our type is "XObject". it has no member to initialize
00034 : CResource( core::CName( "XObject" ), sub_type ) 00035 { 00036 } |
|
an empty destructor. nothing to destroy here.
00041 { 00042 } |