12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2015 Autodesk, Inc. All rights reserved.
- //
- // Use of this software is subject to the terms of the Autodesk license
- // agreement provided at the time of installation or download, or which
- // otherwise accompanies this software in either electronic or hard copy form.
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // DESCRIPTION:
- //
- // This file contains the class AcGePointEnt2d - An abstract base
- // class to represent point entities.
- #ifndef AC_GEPENT2D_H
- #define AC_GEPENT2D_H
- #include "adesk.h"
- #include "geent2d.h"
- #include "gepnt2d.h"
- #pragma pack (push, 8)
- class
- GE_DLLEXPIMPORT
- AcGePointEnt2d : public AcGeEntity2d
- {
- public:
- // Return point coordinates.
- //
- AcGePoint2d point2d () const;
- // Conversion operator to convert to AcGePoint2d.
- //
- operator AcGePoint2d () const;
-
- // Assignment operator.
- //
- AcGePointEnt2d& operator = (const AcGePointEnt2d& pnt);
- protected:
- // Private constructors so that no object of this class can be instantiated.
- AcGePointEnt2d ();
- AcGePointEnt2d (const AcGePointEnt2d&);
- };
- #pragma pack (pop)
- #endif
|