mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
18 lines
415 B
C++
18 lines
415 B
C++
#pragma once
|
|
#include "vfsDirBase.h"
|
|
|
|
class vfsLocalDir : public vfsDirBase
|
|
{
|
|
private:
|
|
u32 m_pos;
|
|
|
|
public:
|
|
vfsLocalDir(vfsDevice* device);
|
|
virtual ~vfsLocalDir();
|
|
|
|
virtual bool Open(const std::string& path) override;
|
|
|
|
virtual bool Create(const std::string& path) override;
|
|
virtual bool Rename(const std::string& from, const std::string& to) override;
|
|
virtual bool Remove(const std::string& path) override;
|
|
}; |