// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "base_device.h" namespace Core::Devices { BaseDevice::BaseDevice() = default; BaseDevice::~BaseDevice() = default; } // namespace Core::Devices