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

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