AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_IHostServices.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2014-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 
22 /*================================================================================================*/
23 
24 
25 #ifndef AAX_IHOSTSERVICES_H
26 #define AAX_IHOSTSERVICES_H
27 
28 #include "AAX.h"
29 
38 {
39 public:
40 
41  virtual ~AAX_IHostServices() {}
42 
61  virtual AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const = 0;
69  virtual AAX_Result Trace ( int32_t iPriority, const char * iMessage ) const = 0;
87  virtual AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) const = 0;
88 };
89 
90 #endif // #ifndef AAX_IHOSTSERVICES_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:337
Interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IHostServices.h:38
virtual AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags) const =0
Handle an assertion failure.
virtual AAX_Result StackTrace(int32_t iTracePriority, int32_t iStackTracePriority, const char *iMessage) const =0
Log a trace message or a stack trace.
virtual ~AAX_IHostServices()
Definition: AAX_IHostServices.h:41
virtual AAX_Result Trace(int32_t iPriority, const char *iMessage) const =0
Log a trace message.