home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 5.ddi / PARSER.ZIP / ATOM.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-21  |  269 b   |  16 lines

  1.  
  2. typedef int atom;
  3.  
  4. class atom_storage {
  5.    char** list;
  6.    int count;
  7.    int capacity;
  8. public:
  9.    atom_storage(int size);
  10.    ~atom_storage();
  11.    char* operator[] (atom x) { return list[x]; }
  12.    atom operator[] (char*);
  13.    };
  14.  
  15. extern atom_storage atoms;
  16.