12345678910111213141516171819202122232425262728293031323334353637 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // 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.
- //
- //////////////////////////////////////////////////////////////////////////////
- #pragma once
- #include "rxcopyonwriteobject.h"
- #pragma pack(push, 8)
- class AcGiParameterImp;
- ///////////////////////////////////////////////////////////////////////////////
- // class AcGiParameter
- //
- class ACDB_PORT AcGiParameter : public AcRxCopyOnWriteObject
- {
- friend class AcGiParameterImp;
- public:
- ACRX_DECLARE_MEMBERS_READWRITE(AcGiParameter, AcGiParameterImp);
- AcGiParameter(AcGiParameterImp* pImp);
- AcGiParameter(const AcGiParameter& other);
- const AcGiParameter& operator=(const AcGiParameter& other);
- };
- #pragma pack(pop)
|