mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-13 03:40:44 +02:00
21 lines
421 B
C++
21 lines
421 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "DiscIO/Filesystem.h"
|
|
#include <memory>
|
|
#include "DiscIO/Volume.h"
|
|
|
|
namespace DiscIO
|
|
{
|
|
FileInfo::~FileInfo() = default;
|
|
|
|
FileSystem::FileSystem(const Volume* volume, const Partition& partition)
|
|
: m_volume(volume), m_partition(partition)
|
|
{
|
|
}
|
|
|
|
FileSystem::~FileSystem() = default;
|
|
|
|
} // namespace
|