home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / PLOT / IRITSM3S.ZIP / IRIT / OVERLOAD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-02  |  757 b   |  18 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. *                                         *
  4. * Written by:  Gershon Elber                Ver 0.2, Mar. 1990   *
  5. ******************************************************************************
  6. * General, visible to others, definitions of OverLoad.c module.             *
  7. *****************************************************************************/
  8.  
  9. #ifndef    OVERLOAD_H
  10. #define    OVERLOAD_H
  11.  
  12. int OverLoadTypeCheck(int Operator, IritExprType Right, IritExprType Left,
  13.                                   IritExprType *Result);
  14. ParseTree *OverLoadEvalOper(ParseTree *Root, ParseTree *TempR,
  15.         ParseTree *TempL, InptPrsrEvalErrType *IError, char *CError);
  16.  
  17. #endif    /* OVERLOAD_H */
  18.