AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IContainer.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2015, 2023-2024 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * This file is part of the Avid AAX SDK.
8 *
9 * The AAX SDK is subject to commercial or open-source licensing.
10 *
11 * By using the AAX SDK, you agree to the terms of both the Avid AAX SDK License
12 * Agreement and Avid Privacy Policy.
13 *
14 * AAX SDK License: https://developer.avid.com/aax
15 * Privacy Policy: https://www.avid.com/legal/privacy-policy-statement
16 *
17 * Or: You may also use this code under the terms of the GPL v3 (see
18 * www.gnu.org/licenses).
19 *
20 * THE AAX SDK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
21 * EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
22 * DISCLAIMED.
23 *
24 */
25
32/*================================================================================================*/
34#ifndef AAX_ICONTAINER_H
35#define AAX_ICONTAINER_H
37
38
42{
43public:
44 virtual ~AAX_IContainer() {}
45
46public:
48 {
54 };
55
56public:
59 virtual void Clear() = 0;
60};
61
63#endif /* defined(AAX_ICONTAINER_H) */
Definition: AAX_IContainer.h:42
virtual void Clear()=0
virtual ~AAX_IContainer()
Definition: AAX_IContainer.h:44
EStatus
Definition: AAX_IContainer.h:48
@ eStatus_Unsupported
Operation is unsupported.
Definition: AAX_IContainer.h:53
@ eStatus_NotInitialized
Uninitialized container.
Definition: AAX_IContainer.h:51
@ eStatus_Unavailable
An internal resource was not available.
Definition: AAX_IContainer.h:52
@ eStatus_Overflow
Internal buffer overflow.
Definition: AAX_IContainer.h:50
@ eStatus_Success
Operation succeeded.
Definition: AAX_IContainer.h:49