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 * Dale Ducharme 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: GR_Error.h (C++) 00015 * 00016 * COMMENTS: 00017 * This is a list of all GR errors or warnings. 00018 * 00019 */ 00020 00021 #ifndef __GR_Error__ 00022 #define __GR_Error__ 00023 00024 #include <UT/UT_ErrorManager.h> 00025 00026 enum GR_ErrorCodes 00027 { 00028 GR_NEED_UVS = 0, // Texture coordinates are required 00029 GR_SAVE_DEFVIEW_FAILED = 1, // Unable to save default ViewState: %s 00030 GR_SAVE_DEFVIEW_SUCCESS = 2, // View options saved to: %s 00031 GR_SAVE_OPT_DEFNS_FAILED = 3, // Unable to save user options: %s 00032 GR_SAVE_OPT_DEFNS_SUCCESS = 4 // User options saved to: %s 00033 }; 00034 00035 #endif
1.5.9