2013-08-03 11:40:03 +02:00
|
|
|
#include "stdafx.h"
|
2014-06-17 17:44:03 +02:00
|
|
|
#include "Utilities/Log.h"
|
2013-08-03 11:40:03 +02:00
|
|
|
#include "HDD.h"
|
|
|
|
|
|
2014-02-16 16:19:06 +01:00
|
|
|
vfsDeviceHDD::vfsDeviceHDD(const std::string& hdd_path) : m_hdd_path(hdd_path)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-16 16:37:32 +01:00
|
|
|
vfsFileBase* vfsDeviceHDD::GetNewFileStream()
|
2014-02-16 16:19:06 +01:00
|
|
|
{
|
2014-02-16 16:37:32 +01:00
|
|
|
return new vfsHDD(this, m_hdd_path);
|
2014-02-16 16:19:06 +01:00
|
|
|
}
|
|
|
|
|
|
2014-02-16 16:37:32 +01:00
|
|
|
vfsDirBase* vfsDeviceHDD::GetNewDirStream()
|
2014-02-16 16:19:06 +01:00
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|