AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IHostServices.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright (c) 2010 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 Technolgy, INC.
13  *
14  */
15 
20 /*================================================================================================*/
21 
22 
23 #ifndef AAX_IHOSTSERVICES_H
24 #define AAX_IHOSTSERVICES_H
25 
26 #include "AAX.h"
27 
36 {
37 public:
38 
39  virtual ~AAX_IHostServices() {}
40 
43  virtual AAX_Result Assert ( const char * iFile, int32_t iLine, const char * iCondition ) = 0;
46  virtual AAX_Result Trace ( int32_t iPriority, const char * iMessage ) = 0;
47 };
48 
49 #endif // #ifndef AAX_IHOSTSERVICES_H
Various utility definitions for AAX.
virtual AAX_Result Trace(int32_t iPriority, const char *iMessage)=0
Log a trace message.
int32_t AAX_Result
Definition: AAX.h:118
virtual ~AAX_IHostServices()
Definition: AAX_IHostServices.h:39
virtual AAX_Result Assert(const char *iFile, int32_t iLine, const char *iCondition)=0
Assert that a condition is true.
Interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IHostServices.h:35