mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
22 lines
363 B
C++
22 lines
363 B
C++
#pragma once
|
|
|
|
#include "filesystem_def.h"
|
|
#include "../Ioman_DirectoryIterator.h"
|
|
|
|
namespace Iop
|
|
{
|
|
namespace Ioman
|
|
{
|
|
class CPathDirectoryIterator : public CDirectoryIterator
|
|
{
|
|
public:
|
|
CPathDirectoryIterator(const fs::path&);
|
|
|
|
void ReadEntry(DIRENTRY*) override;
|
|
bool IsDone() override;
|
|
|
|
private:
|
|
fs::directory_iterator m_iterator;
|
|
};
|
|
}
|
|
}
|