mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
12 lines
174 B
C++
12 lines
174 B
C++
#pragma once
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostDirectoryCursor
|
|
{
|
|
public:
|
|
virtual bool GetNext(const char *&outFileName) = 0;
|
|
virtual void Destroy() = 0;
|
|
};
|
|
}
|