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 * David Wong 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: GQ_Error.h (C++) 00015 * 00016 * COMMENTS: 00017 * 00018 */ 00019 00020 #ifndef __GQ_Error__ 00021 #define __GQ_Error__ 00022 00023 enum GQ_ErrorCodes 00024 { 00025 GQ_ERROR_FAIL = 0, // Unknown failure reason 00026 GQ_ERROR_DEGEN, 00027 GQ_ERROR_BOOLEAN_A_NOT_CLOSED, 00028 GQ_ERROR_BOOLEAN_B_NOT_CLOSED, 00029 GQ_ERROR_BOOLEAN_A_NOT_POLY, 00030 GQ_ERROR_BOOLEAN_B_NOT_POLY, 00031 GQ_ERROR_BOOLEAN_PRECISION 00032 }; 00033 00034 00035 #endif
1.5.9