00001
00002
00004
00005 #if !defined(AFX_TITERATORINTERFACE_H__97251A31_74CB_40D0_A6B1_8526C18715DA__INCLUDED_)
00006 #define AFX_TITERATORINTERFACE_H__97251A31_74CB_40D0_A6B1_8526C18715DA__INCLUDED_
00007
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011
00012 #include <fcntl.h>
00013 #include <io.h>
00014 #include <stdlib.h>
00015 #include <windows.h>
00016
00017 template <class T> class TIteratorInterface
00018 {
00019 public:
00020 virtual T* getNext()=0;
00021 virtual BOOLEAN hasNext()=0;
00022 virtual ~TIteratorInterface()
00023 {
00024 };
00025 };
00026
00027 #endif // !defined(AFX_TITERATORINTERFACE_H__97251A31_74CB_40D0_A6B1_8526C18715DA__INCLUDED_)