12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // 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:
- // Specialized templates to enbale the following types
- // to use certain allocators.
- //
- #if defined(ADSK_ACGEVECTOR2D_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACGEVECTOR2D_DEFINED
- template<>
- struct AllocatorSelector<AcGeVector2d, false>
- {
- typedef AcArrayMemCopyReallocator<AcGeVector2d> allocator;
- };
- #endif
- #if defined(ADSK_ACGEVECTOR3D_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACGEVECTOR3D_DEFINED
- template<>
- struct AllocatorSelector<AcGeVector3d, false>
- {
- typedef AcArrayMemCopyReallocator<AcGeVector3d> allocator;
- };
- #endif
- #if defined(ADSK_ACGEPOINT3D_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACGEPOINT3D_DEFINED
- template<>
- struct AllocatorSelector<AcGePoint3d, false>
- {
- typedef AcArrayMemCopyReallocator<AcGePoint3d> allocator;
- };
- #endif
- #if defined(ADSK_ACGEPOINT2D_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACGEPOINT2D_DEFINED
- template<>
- struct AllocatorSelector<AcGePoint2d, false>
- {
- typedef AcArrayMemCopyReallocator<AcGePoint2d> allocator;
- };
- #endif
- #if defined(ADSK_ACDBOBJECTID_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACDBOBJECTID_DEFINED
- template<>
- struct AllocatorSelector<AcDbObjectId, false>
- {
- typedef AcArrayMemCopyReallocator<AcDbObjectId> allocator;
- };
- #endif
- #if defined(ADSK_ACCMENTITYCOLOR_DEFINED) && defined(AC_ACARRAY_H)
- #undef ADSK_ACCMENTITYCOLOR_DEFINED
- template<>
- struct AllocatorSelector<AcCmEntityColor, false>
- {
- typedef AcArrayMemCopyReallocator<AcCmEntityColor> allocator;
- };
- #endif
|