123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // 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 __AXMAT3D_H_
- #define __AXMAT3D_H_
- #include "gemat3d.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 AcAxMatrix3d : public AcGeMatrix3d
- {
- public:
- // constructors
- AcAxMatrix3d();
- AcAxMatrix3d(const VARIANT* var) throw(HRESULT);
- AcAxMatrix3d(const VARIANT& var) throw(HRESULT);
- AcAxMatrix3d(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- // equal operators
- AcAxMatrix3d& operator=(const VARIANT* var) throw(HRESULT);
- AcAxMatrix3d& operator=(const VARIANT& var) throw(HRESULT);
- AcAxMatrix3d& operator=(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- // utilities
- private:
- AcAxMatrix3d& fromSafeArray(const SAFEARRAY* safeArrayPt) throw(HRESULT);
- };
- #pragma pack (pop)
- #endif
|