mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
15 lines
338 B
C++
15 lines
338 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "vfsDeviceLocalFile.h"
|
||
|
|
#include "vfsLocalFile.h"
|
||
|
|
#include "vfsLocalDir.h"
|
||
|
|
|
||
|
|
std::shared_ptr<vfsFileBase> vfsDeviceLocalFile::GetNewFileStream()
|
||
|
|
{
|
||
|
|
return std::make_shared<vfsLocalFile>(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
std::shared_ptr<vfsDirBase> vfsDeviceLocalFile::GetNewDirStream()
|
||
|
|
{
|
||
|
|
return std::make_shared<vfsLocalDir>(this);
|
||
|
|
}
|