/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2020 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ #include "xenia/vfs/device.h" #include "xenia/base/logging.h" namespace xe { namespace vfs { Device::Device(const std::string_view mount_path) : mount_path_(mount_path) {} Device::~Device() = default; } // namespace vfs } // namespace xe