AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFCollection.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2013-2017, 2023 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * CONFIDENTIAL: this document contains confidential information of Avid. Do
8 * not disclose to any third party. Use of the information contained in this
9 * document is subject to an Avid SDK license.
10 *
11 */
12
19/*================================================================================================*/
20
21
22#ifndef AAX_IACFCOLLECTION_H
23#define AAX_IACFCOLLECTION_H
24
25#ifdef __clang__
26#pragma clang diagnostic push
27#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
28#endif
29
30#include "acfbaseapi.h"
31
33
36class AAX_IACFCollection : public IACFPluginDefinition
37{
38public:
39
40 virtual AAX_Result AddEffect ( const char * inEffectID, IACFUnknown * inEffectDescriptor ) = 0;
41 virtual AAX_Result SetManufacturerName( const char* inPackageName ) = 0;
42 virtual AAX_Result AddPackageName( const char *inPackageName ) = 0;
43 virtual AAX_Result SetPackageVersion( uint32_t inVersion ) = 0;
44 virtual AAX_Result SetProperties ( IACFUnknown * inProperties ) = 0;
45};
46
47#ifdef __clang__
48#pragma clang diagnostic pop
49#endif
50
51#endif
int32_t AAX_Result
Definition: AAX.h:334
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface to represent a plug-in binary's static description.
Definition: AAX_IACFCollection.h:37
virtual AAX_Result AddEffect(const char *inEffectID, IACFUnknown *inEffectDescriptor)=0
Add an Effect description to the collection.
virtual AAX_Result SetProperties(IACFUnknown *inProperties)=0
Set the properties of the collection.
virtual AAX_Result SetPackageVersion(uint32_t inVersion)=0
Set the plug-in package version number.
virtual AAX_Result AddPackageName(const char *inPackageName)=0
Set the plug-in package name.
virtual AAX_Result SetManufacturerName(const char *inPackageName)=0
Set the plug-in manufacturer name.
Description interface for an effect's (plug-in type's) components.
Definition: AAX_IEffectDescriptor.h:47