home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / COMPILER / SAMPLE07 / METHOD2 / STACK.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-17  |  215 b   |  11 lines

  1. /*******************************/
  2. /* Generating two instances of */
  3. /* of stack for int and float  */
  4. /*******************************/
  5.  
  6. #include "stk.h"
  7.  
  8. stack<int>   dummy1(0);
  9. stack<float> dummy2(0);
  10.  
  11.