#ifndef __IAGCAlephImpl_h__ #define __IAGCAlephImpl_h__ ///////////////////////////////////////////////////////////////////////////// // IAGCAlephImpl.h : Declaration of the IAGCAlephImpl class template. // #include "IAGCModelImpl.h" ///////////////////////////////////////////////////////////////////////////// // Interface Map Macro // // Classes derived from IAGCAlephImpl should include this macro in their // interface maps. // #define COM_INTERFACE_ENTRIES_IAGCAlephImpl() \ COM_INTERFACE_ENTRY(IAGCAleph) \ COM_INTERFACE_ENTRY(IDispatch) \ COM_INTERFACE_ENTRIES_IAGCModelImpl() ///////////////////////////////////////////////////////////////////////////// // IAGCAlephImpl // template class ATL_NO_VTABLE IAGCAlephImpl : public IAGCModelImpl { // Types public: typedef IAGCAlephImpl IAGCAlephImplBase; // IAGCAleph Interface Methods public: STDMETHODIMP get_Destination(IAGCAleph** ppDestination) { assert(GetIGC()); assert(GetIGC()->GetDestination()); return GetAGCGlobal()->GetAGCObject(GetIGC()->GetDestination(), IID_IAGCAleph, (void**)ppDestination); } }; ///////////////////////////////////////////////////////////////////////////// #endif //__IAGCAlephImpl_h__