![]() |
AAX SDK 2.6.1
Avid Audio Extensions Development Kit
|
#include <AAX_IACFSessionDocument.h>
Interface representing information in a host session document.
Plug-in implementations should use AAX_ISessionDocument , which provides specific convenience methods for supported data types.
Public Member Functions | |
| virtual AAX_Result | GetDocumentData (AAX_DocumentData_UID const &inDataType, IACFUnknown **outData)=0 |
| Get data from the document. | |
Public Member Functions inherited from IACFUnknown | |
| virtual BEGIN_ACFINTERFACE ACFRESULT ACFMETHODCALLTYPE | QueryInterface (const acfIID &iid, void **ppOut)=0 |
| Returns pointers to supported interfaces. | |
| virtual acfUInt32 ACFMETHODCALLTYPE | AddRef (void)=0 |
| Increments reference count. | |
| virtual acfUInt32 ACFMETHODCALLTYPE | Release (void)=0 |
| Decrements reference count. | |
|
pure virtual |
Get data from the document.
Get document data of a generic type
Similar to QueryInterface() but uses a data type identifier rather than a true IID
The provided interface has already had a reference added, so be careful not to add an additional reference:
| [in] | inDataType | The type of the document data requested |
| [out] | outData | An interface providing the requested data, or nullptr if the host does not support or cannot provide the requested data type. The reference count has been incremented on this object on behalf of the caller, so the caller must not add an additional reference count and must decrement the reference count on this object to release it. For information about which interface to expect for each requested data type, see the documentation for that data type. |
1.9.6