AAX SDK 2.6.1
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 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
19/*================================================================================================*/
20#ifndef AAX_VHOSTSERVICES_H
21#define AAX_VHOSTSERVICES_H
22
23#include "AAX_IHostServices.h"
24#include "AAX.h"
25#include "acfunknown.h"
26#include "ACFPtr.h"
28
29
30class IACFUnknown;
32
38{
39public:
42
43 AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const AAX_OVERRIDE;
44 AAX_Result Trace ( int32_t iPriority, const char * iMessage ) const AAX_OVERRIDE;
45 AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) const AAX_OVERRIDE;
46
47private:
48 ACFPtr<AAX_IACFHostServices> mIACFHostServices;
49 ACFPtr<AAX_IACFHostServices_V2> mIACFHostServices2;
50 ACFPtr<AAX_IACFHostServices_V3> mIACFHostServices3;
51};
52
53
54
55#endif //AAX_IAUTOMATIONDELEGATE_H
56
57
58
Various host services.
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
#define AAX_OVERRIDE
override keyword macro
Definition: AAX.h:151
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:35
Interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IHostServices.h:35
Version-managed concrete AAX_IHostServices class.
Definition: AAX_VHostServices.h:38
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)