00001 #include "BankIter.h" 00002 #include <iostream> 00003 00004 00005 //---------------------------------------------------------------------- 00006 template<typename BANK> 00007 const BANK* BankIter<BANK>::Next() 00008 { 00009 return new BANK; 00010 } 00011 00012 00013 //---------------------------------------------------------------------- 00014 template<typename BANK> 00015 BankIter<BANK>& BankIter<BANK>::Rewind() 00016 { 00017 return *this; 00018 } 00019 00020 00021 // emacs metadata 00022 // Local Variables: 00023 // mode: c++ 00024 // End: