/*------------------------------------------------------------------------------------- EnumOper.h : enum for operators Author : Olivier Couvreur 23/04/97 Modify : --------------------------------------------------------------------------------------*/ #if !defined(__ENUM_OPER_H__) #define __ENUM_OPER_H__ /* Scalar means it's working for scalar only*/ /* Vector means it's working for vector only*/ /* else for both*/ #define M_DEFINE_OPERATOR(a,b,c,d,e,f) a, /* Definition of Operators.*/ typedef enum tdeOperatorId_ { #include "DefOper.h" /*************** MUST BE AT END ***************/ eNbOperator /* = NB OPERATOR */ /**********************************************/ } tdeOperatorId; #undef M_DEFINE_OPERATOR #endif /* __ENUM_OPER_H__*/