AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IFeatureInfo.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_IFeatureInfo_h
12#define AAXLibrary_AAX_IFeatureInfo_h
13
14#include "AAX.h"
15
16
18
19
21{
22public:
23 virtual ~AAX_IFeatureInfo() {}
24
25public: // AAX_IACFFeatureInfo
31 virtual AAX_Result SupportLevel(AAX_ESupportLevel& oSupportLevel) const = 0;
32
52 virtual const AAX_IPropertyMap* AcquireProperties() const = 0;
53
54public: // AAX_IFeatureInfo
57 virtual const AAX_Feature_UID& ID() const = 0;
58};
59
60
61#endif
AAX_ESupportLevel
Definition: AAX_Enums.h:1274
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
Definition: AAX_ACFInterface.doxygen:216
Definition: AAX_IFeatureInfo.h:21
virtual const AAX_Feature_UID & ID() const =0
virtual ~AAX_IFeatureInfo()
Definition: AAX_IFeatureInfo.h:23
virtual AAX_Result SupportLevel(AAX_ESupportLevel &oSupportLevel) const =0
virtual const AAX_IPropertyMap * AcquireProperties() const =0
Generic plug-in description property map.
Definition: AAX_IPropertyMap.h:56