AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFSessionDocumentClient.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 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
29/*================================================================================================*/
30
31#pragma once
32#ifndef AAX_IACFSessionDocumentClient_H
33#define AAX_IACFSessionDocumentClient_H
34
35#ifdef __clang__
36#pragma clang diagnostic push
37#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
38#endif
39
40#include "AAX_UIDs.h"
41#include "AAX.h"
42#include "acfunknown.h"
43
51{
52public:
56 virtual AAX_Result Initialize (IACFUnknown * iUnknown) = 0;
57 virtual AAX_Result Uninitialize (void) = 0;
59
71 virtual AAX_Result SetSessionDocument(IACFUnknown * iSessionDocument) = 0;
73
101 virtual AAX_Result NotificationReceived(/* AAX_ENotificationEvent */ AAX_CTypeID inNotificationType, const void * inNotificationData, uint32_t inNotificationDataSize) = 0;
103};
104
105#ifdef __clang__
106#pragma clang diagnostic pop
107#endif
108
109#endif // AAX_IACFSessionDocumentClient_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
uint32_t AAX_CTypeID
Matches type of OSType used in classic plugins.
Definition: AAX.h:346
Unique identifiers for AAX/ACF interfaces.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:265
Interface representing a client of the session document interface.
Definition: AAX_IACFSessionDocumentClient.h:51
virtual AAX_Result Uninitialize(void)=0
virtual AAX_Result Initialize(IACFUnknown *iUnknown)=0
virtual AAX_Result NotificationReceived(AAX_CTypeID inNotificationType, const void *inNotificationData, uint32_t inNotificationDataSize)=0
Notification Hook.
virtual AAX_Result SetSessionDocument(IACFUnknown *iSessionDocument)=0
Sets or removes a session document.