Files
dolphin/Source/Core/DiscIO/Filesystem.cpp
T

38 lines
807 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2008-12-08 05:30:24 +00:00
2014-02-17 05:18:15 -05:00
#include "DiscIO/Filesystem.h"
#include <memory>
2014-02-17 05:18:15 -05:00
#include "DiscIO/FileSystemGCWii.h"
#include "DiscIO/Volume.h"
2008-12-08 05:30:24 +00:00
namespace DiscIO
{
2017-06-13 23:05:30 +02:00
FileInfo::~FileInfo() = default;
2015-08-09 20:53:38 +02:00
FileSystem::FileSystem(const Volume* volume, const Partition& partition)
: m_volume(volume), m_partition(partition)
{
}
2008-12-08 05:30:24 +00:00
2017-06-13 23:05:30 +02:00
FileSystem::~FileSystem() = default;
2008-12-08 05:30:24 +00:00
std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition)
2008-12-08 05:30:24 +00:00
{
2017-02-12 13:02:57 +01:00
if (!volume)
return nullptr;
std::unique_ptr<FileSystem> filesystem = std::make_unique<FileSystemGCWii>(volume, partition);
2008-12-08 05:30:24 +00:00
if (!filesystem)
return nullptr;
2008-12-08 05:30:24 +00:00
if (!filesystem->IsValid())
filesystem.reset();
2008-12-08 05:30:24 +00:00
return filesystem;
2008-12-08 05:30:24 +00:00
}
} // namespace