home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / DEBUGGER / NEST / NESTTPL.H < prev    next >
Text File  |  1993-05-13  |  231b  |  18 lines

  1.  
  2. template <class E, class F>  class outer
  3. {
  4.        public:
  5.        void hello(E e);
  6.  
  7.   class inner
  8.   {
  9.        public:
  10.        void hello(E e, F f);
  11.   };
  12. };
  13.  
  14. #if defined  __IBMCPP__
  15.   #include  "nesttpl.cpp"
  16. #endif
  17.  
  18.