AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_IACFHostServices.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013-2015, 2018 by Avid Technology, Inc.
5  * All rights reserved.
6  *
7  * CONFIDENTIAL: This document contains confidential information. Do not
8  * read or examine this document unless you are an Avid Technology employee
9  * or have signed a non-disclosure agreement with Avid Technology which protects
10  * the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
11  * CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
12  * OF Avid Technology, INC.
13  *
14  */
15 
20 /*================================================================================================*/
21 
22 
23 #ifndef AAX_IACFHOSTSERVICES_H
24 #define AAX_IACFHOSTSERVICES_H
25 
26 #include "AAX.h"
27 
28 #ifdef __clang__
29 #pragma clang diagnostic push
30 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
31 #endif
32 
33 #include "acfunknown.h"
34 
38 {
39 public:
59  virtual AAX_Result Assert ( const char * iFile, int32_t iLine, const char * iNote ) = 0;
60 
61  virtual AAX_Result Trace ( int32_t iPriority, const char * iMessage ) = 0;
62 };
63 
67 {
68 public:
69  virtual AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) = 0;
70 };
71 
75 {
76 public:
77  virtual AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const = 0;
78 };
79 
80 #ifdef __clang__
81 #pragma clang diagnostic pop
82 #endif
83 
84 #endif // #ifndef AAX_IACFHOSTSERVICES_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:337
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:248
Versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:38
virtual AAX_Result Assert(const char *iFile, int32_t iLine, const char *iNote)=0
virtual AAX_Result Trace(int32_t iPriority, const char *iMessage)=0
Log a trace message.
V2 of versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:67
virtual AAX_Result StackTrace(int32_t iTracePriority, int32_t iStackTracePriority, const char *iMessage)=0
Log a trace message or a stack trace.
V3 of versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:75
virtual AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags) const =0
Handle an assertion failure.