AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IACFCollection.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013 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 Technolgy, 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 * iEffectID, IACFUnknown * iEffectDescriptor ) = 0;
44  virtual AAX_Result SetManufacturerName( const char* iPackageName ) = 0;
45  virtual AAX_Result AddPackageName( const char *iPackageName ) = 0;
46  virtual AAX_Result SetPackageVersion( uint32_t iVersion ) = 0;
47 
51  virtual AAX_Result SetProperties ( IACFUnknown * iProperties ) = 0;
52 };
53 
54 #ifdef __clang__
55 #pragma clang diagnostic pop
56 #endif
57 
58 #endif
virtual AAX_Result SetPackageVersion(uint32_t iVersion)=0
Set the plug-in package version number.
Versioned interface to represent a plug-in binary's static description.
Definition: AAX_IACFCollection.h:39
virtual AAX_Result SetProperties(IACFUnknown *iProperties)=0
Set the properties of a new property map.
virtual AAX_Result SetManufacturerName(const char *iPackageName)=0
Set the plug-in manufacturer name.
virtual AAX_Result AddEffect(const char *iEffectID, IACFUnknown *iEffectDescriptor)=0
Add an Effect description to the collection.
virtual AAX_Result AddPackageName(const char *iPackageName)=0
Set the plug-in package name.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
int32_t AAX_Result
Definition: AAX.h:118
Description interface for an effect's (plug-in type's) components.
Definition: AAX_IEffectDescriptor.h:47