home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / test / regression / map1.hpp < prev    next >
C/C++ Source or Header  |  2002-04-29  |  245b  |  11 lines

  1.  
  2. // class Int is defined here because the primitive 'int' does not have a 
  3. // default constructor. The default constructor is used when map['z']
  4. // accesses an uninitialized element.
  5. struct Int
  6.   {
  7.   Int(int x = 0) : val(x) {};
  8.   int val;
  9.   };
  10.  
  11.