AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IDataBufferWrapper.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#ifndef AAX_IDATABUFFERWRAPPER_H
20#define AAX_IDATABUFFERWRAPPER_H
21
22#include "AAX.h"
23
36{
37public:
38 virtual ~AAX_IDataBufferWrapper() = default;
39
40 virtual AAX_Result Type(AAX_CTypeID * oType) const = 0;
41 virtual AAX_Result Size(int32_t * oSize) const = 0;
42 virtual AAX_Result Data(void const ** oBuffer) const = 0;
43};
44
45#endif // AAX_IDATABUFFERWRAPPER_H
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
Wrapper for an AAX_IDataBuffer.
Definition: AAX_IDataBufferWrapper.h:36
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
virtual ~AAX_IDataBufferWrapper()=default