AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_VHostServices.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2014-2017, 2019, 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/*================================================================================================*/
33#ifndef AAX_VHOSTSERVICES_H
34#define AAX_VHOSTSERVICES_H
35
36#include "AAX_IHostServices.h"
37#include "AAX.h"
38#include "acfunknown.h"
39#include "ACFPtr.h"
41
42
43class IACFUnknown;
45
51{
52public:
55
56 AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const AAX_OVERRIDE;
57 AAX_Result Trace ( int32_t iPriority, const char * iMessage ) const AAX_OVERRIDE;
58 AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) const AAX_OVERRIDE;
59
60private:
61 ACFPtr<AAX_IACFHostServices> mIACFHostServices;
62 ACFPtr<AAX_IACFHostServices_V2> mIACFHostServices2;
63 ACFPtr<AAX_IACFHostServices_V3> mIACFHostServices3;
64};
65
66
67
68#endif //AAX_IAUTOMATIONDELEGATE_H
69
70
71
Various host services.
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
#define AAX_OVERRIDE
override keyword macro
Definition: AAX.h:164
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:265
Versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:48
Interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IHostServices.h:48
Version-managed concrete AAX_IHostServices class.
Definition: AAX_VHostServices.h:51
AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags) const AAX_OVERRIDE
Handle an assertion failure.
AAX_Result Trace(int32_t iPriority, const char *iMessage) const AAX_OVERRIDE
Log a trace message.
AAX_Result StackTrace(int32_t iTracePriority, int32_t iStackTracePriority, const char *iMessage) const AAX_OVERRIDE
Log a trace message or a stack trace.
AAX_VHostServices(IACFUnknown *pUnkHost)