gxdir.h 279 B

12345678910111213141516171819202122
  1. #ifndef GXDIR_H
  2. #define GXDIR_H
  3. #include <string>
  4. #include <windows.h>
  5. class gxDir{
  6. public:
  7. gxDir( HANDLE h,const WIN32_FIND_DATA &f );
  8. ~gxDir();
  9. private:
  10. HANDLE handle;
  11. WIN32_FIND_DATA findData;
  12. /***** GX INTERFACE *****/
  13. public:
  14. std::string getNextFile();
  15. };
  16. #endif