AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFDataBuffer.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 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
16/*================================================================================================*/
17
18#pragma once
19
20#ifndef AAX_IACFDataBuffer_H
21#define AAX_IACFDataBuffer_H
22
23#include "AAX.h"
24
25#ifdef __clang__
26#pragma clang diagnostic push
27#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
28#endif
29
30#include "acfunknown.h"
31
41{
42public:
49 virtual AAX_Result Type(AAX_CTypeID * oType) const = 0;
53 virtual AAX_Result Size(int32_t * oSize) const = 0;
57 virtual AAX_Result Data(void const ** oBuffer) const = 0;
58};
59
60#ifdef __clang__
61#pragma clang diagnostic pop
62#endif
63
64#endif
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
uint32_t AAX_CTypeID
Matches type of OSType used in classic plugins.
Definition: AAX.h:333
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface for reference counted data buffers.
Definition: AAX_IACFDataBuffer.h:41
virtual AAX_Result Type(AAX_CTypeID *oType) const =0
virtual AAX_Result Size(int32_t *oSize) const =0
virtual AAX_Result Data(void const **oBuffer) const =0