home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_11 / 9n11106a < prev    next >
Text File  |  1991-09-23  |  271b  |  14 lines

  1. class String
  2.         {
  3. public:
  4.         String() : len(0)
  5.                 {
  6.                 str = new char[1];
  7.                 *str = '\0';
  8.                 }
  9.         String(const char *) { ... }
  10.         String(const String &s) { ... }
  11.         ...
  12.         };
  13.  
  14.