home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / DEBUGGER / NEST / NEST.CPP next >
Text File  |  1993-05-13  |  411b  |  26 lines

  1. #include <iostream.h>
  2. #include "nesttpl.h"
  3.  
  4. template <class E> class outer1 : public outer <E, int> {};
  5.  
  6. void main()
  7. {
  8.   int j=0;
  9.   int excpt;
  10.  
  11.        cout << "Hello, here is the main program.\n";
  12.  
  13.        outer<int, int>  oi;
  14.        oi.hello(14);
  15.  
  16.        outer1<int>  oi1;
  17.        oi1.hello(14);
  18.  
  19.        outer<int, char*>::inner iic;
  20.        iic.hello(14, "YES");
  21.  
  22.        excpt=2/j;
  23. }
  24.  
  25.  
  26.