00001
00002
00003
00004
00005
00006 #ifndef H_PDFTRON_PDF_CPPWRAP_CIRCLE
00007 #define H_PDFTRON_PDF_CPPWRAP_CIRCLE
00008
00009 #include <PDF/Annots/Markup.h>
00010
00011 namespace pdftron {
00012 namespace PDF {
00013 namespace Annots {
00020 class Circle : public Markup
00021 {
00022 public:
00023
00029 Circle(SDF::Obj d = 0);
00030
00036 Circle(const Annot& ann) : Markup(ann.GetSDFObj()) {}
00037
00046 static Circle Create(SDF::SDFDoc& doc, const Rect& pos);
00047
00049 Circle(TRN_Annot circle);
00051
00052 };
00053 };
00054 };
00055 };
00056
00057 #include <Impl/Page.inl>
00058 #endif