home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / OOPSV / OOPSLIB.ZIP / STATINIT.CPP < prev   
Encoding:
C/C++ Source or Header  |  1995-01-09  |  354 b   |  9 lines

  1. #include "state.hpp"          // pour State::tabInitial
  2. #include "statecod.cod"       // pour les noms des etats
  3. #include "allcodes.cod"       // pour MAX_CLASSES et MAX_INIT_STATE
  4. int StateTabInitial [MAX_CLASSES][MAX_INIT_STATE] =
  5.   {
  6.      #include "statinit.cod"
  7.   };
  8. int* State::tabInitial = (int*)StateTabInitial;  // CONVERSION DANGEUREUSE !!
  9.