HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RAY_IO.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: RAY_IO.h ( RAY Library, C++)
7  *
8  * COMMENTS: Map mantra error reporting methods to the ones in UT
9  */
10 
11 #ifndef __RAY_IO__
12 #define __RAY_IO__
13 
14 #include <UT/UT_ErrorLog.h>
15 
16 #define RAYprintf UT_ErrorLog::mantraPrintf
17 #define RAYerror UT_ErrorLog::mantraError
18 #define RAYwarning UT_ErrorLog::mantraWarning
19 
20 #define RAYprintfOnce UT_ErrorLog::mantraPrintfOnce
21 #define RAYerrorOnce UT_ErrorLog::mantraErrorOnce
22 #define RAYwarningOnce UT_ErrorLog::mantraWarningOnce
23 
24 #endif