home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsv / ch6_4 / chaincode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-22  |  262 b   |  17 lines

  1. #define DEFAULT_CODE_LENGTH 512
  2. #define SCALE 4
  3.  
  4. class chainCode{
  5.     public:
  6.         char* code;
  7.         int   length;       
  8.  
  9.         chainCode();
  10.         ~chainCode();
  11.         void add(char c);
  12.         chainCode* postProcess();
  13.         void printSelf();
  14. };
  15.  
  16.  
  17.