00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Mark Elendt 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: IFD_Error.h (C++) 00015 * 00016 * COMMENTS: 00017 * This class is used to store IFD errors or warnings. 00018 * 00019 */ 00020 00021 #ifndef __IFD_Error_h___ 00022 #define __IFD_Error_h___ 00023 00024 enum IFD_ErrorCodes 00025 { 00026 IFD_UNKNOWN_RENDERER = 0, // Unknown renderer type 00027 IFD_BAD_WRITE = 1, // Error on writing 00028 IFD_BAD_OPEN = 2, // Error on reading 00029 IFD_BAD_ENTRYNAME = 3, // Could not find the entry name 00030 IFD_BAD_ONLYFILE = 4, // Only writes output 00031 00032 IFD_NOT_SUPPORTED = 5, // Feature not supported by renderer 00033 00034 IFD_BAD_GEOMETRY = 6, // Bad Geometry output 00035 00036 IFD_DMAP_CROPWINDOW = 7, // Crop/Window channels set on depth map render 00037 }; 00038 00039 #endif
1.5.9