mirror of
https://github.com/libretro/Play-.git
synced 2025-03-04 09:17:50 +00:00
25 lines
436 B
C++
25 lines
436 B
C++
#ifndef _DIRECTORYDEVICE_H_
|
|
#define _DIRECTORYDEVICE_H_
|
|
|
|
#include <string>
|
|
#include "Ioman_Device.h"
|
|
|
|
namespace Iop
|
|
{
|
|
namespace Ioman
|
|
{
|
|
class CDirectoryDevice : public CDevice
|
|
{
|
|
public:
|
|
CDirectoryDevice(const char*);
|
|
virtual ~CDirectoryDevice();
|
|
virtual Framework::CStream* GetFile(uint32, const char*);
|
|
|
|
private:
|
|
std::string m_basePathPreferenceName;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|