18 lines
263 B
C++
18 lines
263 B
C++
#pragma once
|
|
#include <string>
|
|
#include <Windows.h>
|
|
|
|
class gxDir {
|
|
public:
|
|
gxDir(HANDLE h, const WIN32_FIND_DATA& f);
|
|
~gxDir();
|
|
|
|
private:
|
|
HANDLE handle;
|
|
WIN32_FIND_DATA findData;
|
|
|
|
/***** GX INTERFACE *****/
|
|
public:
|
|
std::string getNextFile();
|
|
};
|