///////////////////////////////////////////////////////////////////////////////////// // auxintsimpl.h : // Copyright (c) Microsoft Corporation 1999. #ifndef AUXINTSIMPL_H #define AUXINTSIMPL_H #include "tuningspaceimpl.h" namespace BDATuningModel { template class ATL_NO_VTABLE IAuxInTSImpl : public ITuningSpaceImpl { public: IAuxInTSImpl() {} virtual ~IAuxInTSImpl() {} typedef ITuningSpaceImpl basetype; BEGIN_PROP_MAP(IAuxInTSImpl) CHAIN_PROP_MAP(basetype) END_PROPERTY_MAP() // IAuxInTS STDMETHOD(Clone) (ITuningSpace **ppTS) { try { if (!ppTS) { return E_POINTER; } ATL_LOCKT(); HRESULT hr = basetype::Clone(ppTS); if (FAILED(hr)) { return hr; } // T* pt = static_cast(*ppTS); return NOERROR; } catch (HRESULT h) { return h; } catch (...) { return E_POINTER; } } }; }; // namespace #endif // AUXINTSIMPL_H // end of file -- AuxIntsimpl.h