Play-/Source/iop/ioman/PathDirectoryDevice.h
Jean-Philip Desjardins 14b6421cf6 Formatting fixes.
2021-01-11 15:59:13 -05:00

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;
};
}
}