AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_IACFCollection.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013-2017 by Avid Technology, Inc.
5  * All rights reserved.
6  *
7  * CONFIDENTIAL: This document contains confidential information. Do not
8  * read or examine this document unless you are an Avid Technology employee
9  * or have signed a non-disclosure agreement with Avid Technology which protects
10  * the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
11  * CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
12  * OF Avid Technology, INC.
13  *
14  */
15 
22 /*================================================================================================*/
23 
24 
25 #ifndef AAX_IACFCOLLECTION_H
26 #define AAX_IACFCOLLECTION_H
27 
28 #ifdef __clang__
29 #pragma clang diagnostic push
30 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
31 #endif
32 
33 #include "acfbaseapi.h"
34 
36 
39 class AAX_IACFCollection : public IACFPluginDefinition
40 {
41 public:
42 
43  virtual AAX_Result AddEffect ( const char * inEffectID, IACFUnknown * inEffectDescriptor ) = 0;
44  virtual AAX_Result SetManufacturerName( const char* inPackageName ) = 0;
45  virtual AAX_Result AddPackageName( const char *inPackageName ) = 0;
46  virtual AAX_Result SetPackageVersion( uint32_t inVersion ) = 0;
47  virtual AAX_Result SetProperties ( IACFUnknown * inProperties ) = 0;
48 };
49 
50 #ifdef __clang__
51 #pragma clang diagnostic pop
52 #endif
53 
54 #endif
int32_t AAX_Result
Definition: AAX.h:337
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:248
Versioned interface to represent a plug-in binary's static description.
Definition: AAX_IACFCollection.h:40
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:50