123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // 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.
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- //
- #ifndef __AXPNT2D_H_
- #define __AXPNT2D_H_
- #include "gept2dar.h"
- #include "gepnt2d.h"
- #include "gevec2d.h"
- #pragma pack (push, 8)
- #ifndef AXAUTOEXP
- #ifdef AXAUTO_DLL
- #define AXAUTOEXP __declspec(dllexport)
- #else
- #define AXAUTOEXP __declspec(dllimport)
- #endif
- #endif
- #pragma warning(disable : 4290)
- class AXAUTOEXP AcAxPoint2d : public AcGePoint2d
- {
- public:
- // constructors
- AcAxPoint2d();
- AcAxPoint2d(double x, double y);
- AcAxPoint2d(const AcGePoint2d& pt);
- AcAxPoint2d(const AcGeVector2d& pt);
- AcAxPoint2d(const VARIANT* var) throw(HRESULT);
- AcAxPoint2d(const VARIANT& var) throw(HRESULT);
- AcAxPoint2d(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- // equal operators
- AcAxPoint2d& operator=(const AcGePoint2d& pt);
- AcAxPoint2d& operator=(const AcGeVector2d& pt);
- AcAxPoint2d& operator=(const VARIANT* var) throw(HRESULT);
- AcAxPoint2d& operator=(const VARIANT& var) throw(HRESULT);
- AcAxPoint2d& operator=(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- // type requests
- VARIANT* asVariantPtr() const throw(HRESULT);
- SAFEARRAY* asSafeArrayPtr() const throw(HRESULT);
- VARIANT& setVariant(VARIANT& var) const throw(HRESULT);
- VARIANT* setVariant(VARIANT* var) const throw(HRESULT);
- // utilities
- private:
- AcAxPoint2d& fromSafeArray(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- };
- #pragma warning(disable : 4275)
- class AXAUTOEXP AcAxPoint2dArray : public AcGePoint2dArray
- {
- public:
- // equal operators
- AcAxPoint2dArray& append(const AcGePoint2d& pt);
- AcAxPoint2dArray& append(const VARIANT* var) throw(HRESULT);
- AcAxPoint2dArray& append(const VARIANT& var) throw(HRESULT);
- AcAxPoint2dArray& append(const SAFEARRAY* safeArrayPt) throw(HRESULT);
-
-
- // type requests
- SAFEARRAY* asSafeArrayPtr() const throw(HRESULT);
- VARIANT& setVariant(VARIANT& var) const throw(HRESULT);
- VARIANT* setVariant(VARIANT* var) const throw(HRESULT);
- // utilities
- private:
- AcAxPoint2dArray& fromSafeArray(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- };
- #pragma pack (pop)
- #endif
|