#include <hyp.fem.intern.h>
hyp_ker::com_result CContainer::NondelegatingQueryInterface(const hyp_ker::hypIID& iid,void** ppv) { if(iid==IID_hypIContainer) { return FinishQI(static_cast<IContainer*>(this),ppv); } else if(iid==IID_hypIContainerIterator) { return FinishQI(static_cast<IContainerIterator*>(this),ppv); } else if(iid==IID_hypIContainerKey) { return FinishQI(static_cast<IContainerKey*>(this),ppv); } else { return CUnknown::NondelegatingQueryInterface(iid,ppv); } } //DOXYTAG
|
|