rpcsx/rpcs3/Emu/FS/vfsLocalDir.h
Peter Tissen 8ac226ae69 replace all instances of wxString with std::string in all cases not
directly involved in either the GUI or other wxWidget classes like wxFile
2014-04-01 16:23:03 +02:00

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