AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFFeatureInfo.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 * Copyright 2016-2017, 2023 Avid Technology, Inc.
4 * All rights reserved.
5 *
6 * CONFIDENTIAL: this document contains confidential information of Avid. Do
7 * not disclose to any third party. Use of the information contained in this
8 * document is subject to an Avid SDK license.
9 */
10
11#ifndef AAXLibrary_AAX_IACFFeatureInfo_h
12#define AAXLibrary_AAX_IACFFeatureInfo_h
13
14#include "AAX.h"
15
17
18#ifdef __clang__
19#pragma clang diagnostic push
20#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
21#endif
22
23#include "acfunknown.h"
24
41{
42public:
43 // NOTE: Documentation is copied directly from AAX_IFeatureInfo despite an adaptation of parameter types (AAX_ESupportLevel* to AAX_ESupportLevel&)
49 virtual AAX_Result SupportLevel(AAX_ESupportLevel* oSupportLevel) const = 0;
50
51 // NOTE: Documentation is not copied directly from AAX_IFeatureInfo due to an adaptation of parameter types (IACFUnknown to AAX_IPropertyMap)
59 virtual AAX_Result AcquireProperties(IACFUnknown** outProperties) = 0;
60};
61
62#ifdef __clang__
63#pragma clang diagnostic pop
64#endif
65
66
67#endif
AAX_ESupportLevel
Definition: AAX_Enums.h:1274
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Definition: AAX_IACFFeatureInfo.h:41
virtual AAX_Result SupportLevel(AAX_ESupportLevel *oSupportLevel) const =0
virtual AAX_Result AcquireProperties(IACFUnknown **outProperties)=0
Versioned interface for an AAX_IPropertyMap.
Definition: AAX_IACFPropertyMap.h:37