mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
28 lines
368 B
C++
28 lines
368 B
C++
|
|
#pragma once
|
|
|
|
#include "DirectoryDevice.h"
|
|
|
|
namespace Iop
|
|
{
|
|
namespace Ioman
|
|
{
|
|
class CPathDirectoryDevice : public CDirectoryDevice
|
|
{
|
|
public:
|
|
CPathDirectoryDevice(const fs::path& basePath)
|
|
: m_basePath(basePath)
|
|
{
|
|
}
|
|
|
|
protected:
|
|
fs::path GetBasePath() override
|
|
{
|
|
return m_basePath;
|
|
}
|
|
|
|
private:
|
|
fs::path m_basePath;
|
|
};
|
|
}
|
|
}
|