2020-12-19 22:32:55 -05:00
|
|
|
// Copyright 2020 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-12-19 22:32:55 -05:00
|
|
|
|
|
|
|
|
#include "Core/System.h"
|
|
|
|
|
|
|
|
|
|
namespace Core
|
|
|
|
|
{
|
|
|
|
|
struct System::Impl
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
System::System() : m_impl{std::make_unique<Impl>()}
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
System::~System() = default;
|
|
|
|
|
} // namespace Core
|