![]() |
00001 //--------------------------------------------------------------------------------------- 00002 // Copyright (c) 2001-2010 by PDFTron Systems Inc. All Rights Reserved. 00003 // Consult legal.txt regarding legal and license information. 00004 //--------------------------------------------------------------------------------------- 00005 00006 #ifndef H_PDFTRON_PDF_CPPW_PDFPoint 00007 #define H_PDFTRON_PDF_CPPW_PDFPoint 00008 00009 namespace pdftron { 00010 namespace PDF { 00011 00012 00013 class Point: public TRN_Point 00014 { 00015 public: 00016 Point() { x=(0); y=(0);} 00017 Point(double px,double py) { x=(px); y=(py); } 00018 }; 00019 00020 } // namespace PDF 00021 } // namespace pdftron 00022 00023 #endif 00024