home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / OOPSV / OOPSLIB.ZIP / EXITSTAT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-07  |  382 b   |  10 lines

  1. #include "state.hpp"          // pour State::tabExitStates
  2. #include "statecod.cod"       // pour les noms des etats
  3. #include "allcodes.cod"       // pour MAX_LST_EXIT_STATE et MAX_EXIT_STATE
  4.  
  5. int StateTabExitStates [MAX_LST_EXIT_STATE][MAX_EXIT_STATE] =
  6.   {
  7.      #include "exitstat.cod"
  8.   };
  9. int* State::tabExitStates = (int*)StateTabExitStates;  // CONVERSION DANGEUREUSE !!
  10.