home *** CD-ROM | disk | FTP | other *** search
- #define NOMINMAX
- #include <iostream.h>
- #include <algo.h>
- #include <list.h>
- #include <iterator.h>
-
- typedef std::list<char> charQueue;
- int main()
- {
- // make and populate the queue
- charQueue* theQueue = new charQueue();
- theQueue->push_back('f');
- theQueue->push_back('o');
- theQueue->push_back('o');
-
- //associate an interator with cout
- std::ostream_iterator<char> theOutStream(cout);
-
- //finally, copy out the list to stdout using iterators and the copy algorithm.
- std::copy (theQueue->begin(), theQueue->end(), theOutStream);
- cout << endl;
- delete theQueue;
-
- return 0;
- }
-
-