home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / compiler / sample07 / method2 / dll / stack.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-20  |  214 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.