mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
23 lines
363 B
C
23 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;
|
||
|
};
|
||
|
}
|
||
|
}
|