All Frameworks Class Hierarchy This Framework Indexes
Usage: an implementation of this interface is supplied and you must use it as is. You should not reimplement it.
interface CATIContainer
Interface to structure a document.
| public virtual ListMembersHere( | const | interfaceID, |
| ioListObj) |
| CATIContainer* pCATIContainer = ... // we suppose that pointer is well initialized. |
| SEQUENCE(CATBaseUnknown_ptr) ListObj; |
| CATLONG32 NbObj = pCATIContainer->ListMembersHere("CATIexample", ListObj); |
| for (int i=0; i < NbObj; i++) |
| { |
| CATIexample* pCATIexample = NULL; |
| if (ListObj[i] && SUCCEEDED(ListObj[i]->QueryInterface(IID_CATIexample, (void**)&pCATIexample)) |
| { |
| pCATIexample->Release(); |
| pCATIexample = NULL; |
| ListObj[i]->Release(); |
| ListObj[i] = NULL;; |
| } |
| } |
Copyright © 2003, Dassault Systèmes. All rights reserved.