home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap02 / STL / StlMain.cpp next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  603 b   |  27 lines

  1. #define NOMINMAX
  2. #include <iostream.h>
  3. #include <algo.h>
  4. #include <list.h>
  5. #include <iterator.h>
  6.  
  7. typedef std::list<char> charQueue;
  8. int main()
  9. {
  10.     // make and populate the queue
  11.     charQueue* theQueue = new charQueue();
  12.     theQueue->push_back('f');
  13.     theQueue->push_back('o');
  14.     theQueue->push_back('o');
  15.  
  16.     //associate an interator with cout
  17.     std::ostream_iterator<char> theOutStream(cout);
  18.  
  19.     //finally, copy out the list to stdout using iterators and the copy algorithm.
  20.     std::copy (theQueue->begin(), theQueue->end(), theOutStream);
  21.     cout << endl;
  22.     delete theQueue;
  23.  
  24.     return 0;
  25. }
  26.  
  27.